leonelhl

SELENIUM - 4 : Ejercicio 4 – Uso Básico

Oct 10th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.16 KB | None | 0 0
  1. WebElement element = driver.findElement(By.name("q"));
  2. element.sendKeys("Cheese!");
  3. element.submit();
  4. System.out.println("Page title is: "+driver.getTitle());
Advertisement
Add Comment
Please, Sign In to add comment