Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created August 20, 2020 09:50
Show Gist options
  • Save angelovstanton/b551f8c1e23836ec760923589ac655a2 to your computer and use it in GitHub Desktop.
Save angelovstanton/b551f8c1e23836ec760923589ac655a2 to your computer and use it in GitHub Desktop.
private void waitUntilLoaded() {
wait.until(x ->
{
JavascriptExecutor javascriptExecutor = (JavascriptExecutor) driver;
String isReady = (String) javascriptExecutor.executeScript("return document.readyState");
return isReady.equals("complete");
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment