Skip to content

Instantly share code, notes, and snippets.

@Khrol
Last active December 30, 2015 01:19
Show Gist options
  • Save Khrol/7755346 to your computer and use it in GitHub Desktop.
Save Khrol/7755346 to your computer and use it in GitHub Desktop.
public boolean isButtonDisplayed() {
return driver.findElement(By.name("fancy-button")).isDisplayed();
}
public void verifyButtonDisplayed() {
assertTrue(isButtonDisplayed(), "Button is not displayed");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment