private void FillRegForm(AccountData acc) { this.driver.FindElement(By.Name("username")).SendKeys(acc.Name); this.driver.FindElement(By.Name("email")).SendKeys(acc.Email); }
private string GetConfirmURL(AccountData acc) { String m = this.AppManager.MHelper.GetLastMail(acc); return(Regex.Match(m, @"http://\S*").Value); }