Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. @Test
  2. public void loginToTheSiteAndVerification(){
  3. driver.get("http://nnmclub.to");
  4. WebElement buttonAuthorization = driver.findElement(By
  5. .xpath("//*[contains(@class,'mainmenu')and contains(text(),'Вход')]"));
  6. buttonAuthorization.click();
  7. WebElement login = driver.findElement(By.name("username"));
  8. login.sendKeys("Ксения00788");
  9. WebElement password = driver.findElement(By.name("password"));
  10. password.sendKeys("zadanie");
  11. WebElement buttonLogin =driver.findElement(By.className("mainoption"));
  12. buttonLogin.click();
  13. boolean isPresentButtonLogout = driver.findElements(By
  14. .xpath("//*[contains(@class,'mainmenu')and contains(text(),'Выход')]")).size()>0;
  15. if (isPresentButtonLogout){
  16. System.out.println("Вход на сайт был успешным");
  17. }else {
  18. System.out.println("Вход на сайт не был успешным");
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement