Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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;
}
share|improve this question

5 Answers

up vote 37 down vote accepted

You could alternatively do:

driver.findElements( By.id("...") ).size() != 0

Which saves the nasty try/catch

share|improve this answer

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:

driver.manage().timeouts().implicitlyWait(0, TimeUnit.MILLISECONDS);
boolean exists = driver.findElements( By.id("...") ).size() != 0
driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS);

Putting that into a utility method should improve performance if you're running a lot of tests

share|improve this answer
1  
Because the implicite timeout can be 3 seconds, but also an other value, one sould store the old value first, and then leate reset it. But unfortunaly you can set the value, but not read it -- cool api – Ralph Jan 9 '12 at 15:02
It seems the default implicit wait time is 0, (seleniumhq.org/docs/04_webdriver_advanced.html) So unless you've configured it to be longer, this shouldn't be necessary. – Andrew M May 24 '12 at 9:43
@Ralph is there a way to get the current value? – Tim Büthe Sep 20 '12 at 16:19
String link = driver.findElement(By.linkText(linkText)).getAttribute("href")

This will give you the link the element is pointing to.

share|improve this answer
1  
but this will result in a Nullpointer exception if the element with text "linkText" does not exist -- it is at the end the same not working idea posted by nu1silva – Ralph Dec 19 '12 at 19:54

As I understand it, this is the default way of using the web driver.

share|improve this answer

With version 2.21.0 of selenium-java.jar you can do this;

driver.findElement(By.id("...")).isDisplayed()
share|improve this answer
Are you sure: I excpect driver.findElement(By.id("...")) to thrown an exception. – Ralph Apr 25 '12 at 12:38
3  
It indeed still throws an exceptio nin 2.21.0 OpenQA.Selenium.NoSuchElementException : Unable to locate element: {"method":"id","selector":"FormButtonPanel_ButtonCancel"} Command duration or timeout: 4 milliseconds For documentation on this error, please visit: seleniumhq.org/exceptions/no_such_element.html Build info: version: '2.21.0', revision: '16552', time: '2012-04-11 19:08:38' System info: os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.6.0_22' Driver info: driver.version: EventFiringWebDriver – Sentient May 21 '12 at 22:04
3  
-1 This is wrong. isDisplayed can be used to test if an element is visible right now, not if it exists in the dom. – Tim Büthe Sep 20 '12 at 16:21
False information. – Koray Tugay Feb 4 at 8:06
-1 This is not the same thing as whether an element exists on a page. – joshin4colours Apr 5 at 18:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.