Advertisement
Guest User

Untitled

a guest
May 24th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public partial class LoginSection
  2. {
  3. private readonly IWebDriver _driver;
  4.  
  5. public LoginSection(IWebDriver browser)
  6. {
  7. _driver = browser;
  8. }
  9.  
  10. public void Login(string email, string password)
  11. {
  12. Email.SendKeys(email);
  13. Password.SendKeys(password);
  14. LoginButton.Click();
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement