Created
May 30, 2015 13:38
-
-
Save johnpolacek/c7b4a1807623fb84173e to your computer and use it in GitHub Desktop.
Selenium Wait For Page Load
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void waitForPageLoad(WebDriver drv) { | |
sleep(50); // Make sure new page init has started... | |
try { | |
(new WebDriverWait(drv, 5)) | |
.until(new ExpectedCondition<Boolean>() { | |
public Boolean apply(WebDriver d) { | |
return ((JavascriptExecutor)d).executeScript("return document.readyState").equals("complete"); | |
} | |
}); | |
} catch (TimeoutException ex) { | |
((JavascriptExecutor)drv).executeScript("window.stop();"); | |
sleep(500); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you have a python equivalent