leonelhl

SELENIUM - 5 : Ejercicio 4 – Uso Básico

Oct 10th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. (new WebDriverWait(driver, 10)).until(new ExpectedCondition<Boolean>() {
  2.             public Boolean apply(WebDriver d) {
  3.                 return d.getTitle().toLowerCase().startsWith("cheese!");
  4.             }
  5.         });
  6.         System.out.println("Page title is: " + driver.getTitle());
  7.         driver.quit();
Advertisement
Add Comment
Please, Sign In to add comment