Advertisement
Guest User

Untitled

a guest
Oct 7th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. final Document res = new PageLoader().load(LOGINPAGE);
  2. final Element username = res.getElementById("UserName");
  3. final Element password = res.getElementById("Password");
  4.  
  5. System.out.println(username.toString());
  6. System.out.println(password.toString());
  7.  
  8. <input type="text" id="UserName" name="UserName" class="std-input full center">
  9. <input type="password" id="Password" name="Password" class="std-input full center">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement