Advertisement
Guest User

Untitled

a guest
Apr 17th, 2014
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. fd.findElement(By.id("SignUp_Id")).sendKeys("testing01@abc.com");
  2. fd.findElement(By.id("SignUp_password")).sendKeys("test123");
  3. fd.findElement(By.id("submit")).click();
  4.  
  5. for(int count=1; count < 10; i++){
  6. fd.findElement(By.id("SignUp_Id")).sendKeys("testing" + i + "@abc.com");
  7. // Rest of the script
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement