RSS

Selenium WebDriver – Test if element is present

22 Mar

Find elements will return an empty list ifselenium no matching elements are found instead of an exception.To check that an element is present, you could try this:

Boolean isPresent = driver.findElements(By.yourLocator).size() > 0

This will return true if at least one element is found and false if it does not exist.

 
Leave a comment

Posted by on 22/03/2016 in Java, Selenium

 

Leave a comment