I just want to check if the element is present on the page or not?
I am confused with what can be used. What is feasible to use isDisplayed()
or isPresent()
?
What is the difference between these two?
I just want to check if the element is present on the page or not?
I am confused with what can be used. What is feasible to use isDisplayed()
or isPresent()
?
What is the difference between these two?
isPresent
functionisDisplayed
returnsTrue
only if the element is displayed on the webpage and is actually visible.If you just want to check if the element is present then you can do one of the following:
findElement
inside a try/catch block. If it goes insidecatch
withNoSuchElementException
then the element is not present.findElements
instead offindElement
and if length of the list returned byfindElements
is zero, then the element is not present.