Skip to content

Instantly share code, notes, and snippets.

View jcarlosgarcia's full-sized avatar

José Carlos García jcarlosgarcia

View GitHub Profile
@jcarlosgarcia
jcarlosgarcia / gist:1555569
Created January 3, 2012 16:16
Waiting for an element to be loaded with Selenium/WebDriver
(new WebDriverWait(driver, TIMEOUT)).until(new ExpectedCondition<Boolean>() {
public Boolean apply(WebDriver d) {
return driver.findElement(By.xpath("myXPathExpression")).isDisplayed();
}
});