Skip to content

Instantly share code, notes, and snippets.

@Khrol
Last active December 30, 2015 01:09
Show Gist options
  • Select an option

  • Save Khrol/7754726 to your computer and use it in GitHub Desktop.

Select an option

Save Khrol/7754726 to your computer and use it in GitHub Desktop.
public boolean verifyButtonDisplayed() {
WebElement button = driver.findElement(By.name("fancy-button"));
assertTrue(button.isDisplayed(), "Button is not displayed");
return button.isDisplayed();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment