Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save brobles82/78cc6310523ab441a576a24be99a8495 to your computer and use it in GitHub Desktop.
Save brobles82/78cc6310523ab441a576a24be99a8495 to your computer and use it in GitHub Desktop.
public WebElement findElement(By by) {
try {
WebDriverWait wait = new WebDriverWait(driver, 5);
return wait.until(ExpectedConditions.visibilityOfElementLocated(by));
} catch (Exception e) {
return NullWebElement.getNull();
}
}
public List<WebElement> findElements(By by) {
WebDriverWait wait = new WebDriverWait(driver, 5);
return wait.until(ExpectedConditions.presenceOfAllElementsLocatedBy(by));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment