Advertisement
Guest User

Untitled

a guest
Sep 16th, 2017
459
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. //Instantiate Firefox Driver
  2. var driver = new FirefoxDriver();
  3.  
  4. FirefoxDriver.Navigate().GoToUrl("https://www.cv-library.co.uk/candidate/login");
  5.  
  6. //Enter User Name - Email Address
  7. var user = driver.FindElement(By.Id("cand-login-left"));
  8. user.SendKeys("testsuccess761@gmail.com");
  9.  
  10. //Enter Password - Account Pasword
  11. var pass = driver.FindElement(By.Id("cand-login-left"));
  12. pass.SendKeys("p@55word123!");
  13.  
  14. //Click on Login button
  15. driver.FindElement(By.Id("cand-login-left")).Click();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement