How to check if an element exist with web driver?
Is using a try catch really the only possible way?
boolean present;
try {
driver.findElement(By.id("logoutLink"));
present = true;
} catch (NoSuchElementException e) {
present = false;
}
|
|
|
You could alternatively do:
Which saves the nasty try/catch |
|||
|
|
|
I agree with Mike's answer but there's an implicit 3 second wait if no elements are found which can be switched on/off which is useful if you're performing this action a lot:
Putting that into a utility method should improve performance if you're running a lot of tests |
|||||||||
|
This will give you the link the element is pointing to. |
|||||
|
|
With version 2.21.0 of selenium-java.jar you can do this;
|
|||||||||||||||
|