Ejemplo n.º 1
0
 private void FillRegForm(AccountData acc)
 {
     this.driver.FindElement(By.Name("username")).SendKeys(acc.Name);
     this.driver.FindElement(By.Name("email")).SendKeys(acc.Email);
 }
Ejemplo n.º 2
0
        private string GetConfirmURL(AccountData acc)
        {
            String m = this.AppManager.MHelper.GetLastMail(acc);

            return(Regex.Match(m, @"http://\S*").Value);
        }