Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created August 20, 2020 09:46
Show Gist options
  • Save angelovstanton/02e71071f528296c581ac67c5205bfdf to your computer and use it in GitHub Desktop.
Save angelovstanton/02e71071f528296c581ac67c5205bfdf to your computer and use it in GitHub Desktop.
@Test
public void executeJavaScript() {
driver.navigate().to("http://automatetheplanet.com");
JavascriptExecutor javascriptExecutor = (JavascriptExecutor) driver;
String title = (String) javascriptExecutor.executeScript("return document.title");
System.out.println(title);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment