Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {
- public Boolean apply(WebDriver d) {
- return d.getTitle().toLowerCase().startsWith("cheese!");
- }
- });
- System.out.println("Page title is: " + driver.getTitle());
- driver.quit();
Advertisement
Add Comment
Please, Sign In to add comment