Esempio n. 1
0
 //1
 public AccountHelper Creation(AccountCreationData creationData)
 {
     InitNewAccountCreation();
     FillAccountForm(creationData);
     ClickContinueButton();
     return(this);
 }
Esempio n. 2
0
 //newAccountCreation
 public AccountHelper FillAccountForm(AccountCreationData creationData)
 {
     Type(By.Id("email"), creationData.EmailAddress);
     Type(By.Id("newPassword"), creationData.NewPassword);
     Type(By.Id("reenterPassword"), creationData.ConfirmNewPassword);
     Type(By.Id("givenName"), creationData.GivenName);
     Type(By.Id("surname"), creationData.Surname);
     return(this);
 }