Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created August 20, 2020 09:55
Show Gist options
  • Save angelovstanton/1bbe88207c39b4dede341d6da5595d91 to your computer and use it in GitHub Desktop.
Save angelovstanton/1bbe88207c39b4dede341d6da5595d91 to your computer and use it in GitHub Desktop.
@Test
public void checkIfElementIsVisible() {
driver.navigate().to("http://automatetheplanet.com");
var element = driver.findElement(By.xpath("/html/body/div[1]/header/div/div[2]/div/div[2]/nav");
Assert.assertTrue(element).isDisplayed());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment