Skip to content

Instantly share code, notes, and snippets.

@ajayk
Created August 20, 2011 19:25
Show Gist options
  • Save ajayk/1159530 to your computer and use it in GitHub Desktop.
Save ajayk/1159530 to your computer and use it in GitHub Desktop.
new WebDriverWait(driver, 45) {
}.until(new ExpectedCondition<Boolean>() {
@Override
public Boolean apply(WebDriver drv) {
return drv.findElement(By.id("stateProvinceDropdown-US"))
.isDisplayed();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment