Ejemplo n.º 1
0
 public void RegisterAccount(string userName, string emailId, string password)
 {
     txtUserName.SendKeys(userName);
     txtEmail.SendKeys(emailId);
     txtPassword.SendKeys(password);
     btnSignUp.Submit();
     DriverHelper.ApplyImplicitWaits(1000);
 }