public void WhenICorrectCredentials() { PageObjects Login = new PageObjects(); Login.LoginWithCredentials("BAkintunde", "Pa$$word2"); Thread.Sleep(3000); }
public void ThenIAmReturnedToTheLoginPage() { PageObjects Login = new PageObjects(_Driver); var usernamefield = Login.txtUserName; Thread.Sleep(4000); Assert.IsTrue(usernamefield.Displayed); }
public void WhenIenterMyCorrectCred() { PageObjects Login = new PageObjects(_Driver); Login.LoginWithCredentials("BAkintunde", "Pa$$word13"); Thread.Sleep(3000); //PageObjects Login = new PageObjects(); //Login.LoginWithCredentials("BAkintundes", "Pa$$word2"); //Thread.Sleep(3000); }
public void ThenIAmLoggedIntoTrisus() { PageObjects Logout = new PageObjects(_Driver); Logout.ClickLogout(); }
public void WhenIEnterCorrectCredentials() { PageObjects Login = new PageObjects(_Driver); Login.LoginWithCredentials("BAkintunde", "Pa$$word2"); }
public void WhenLogOut() { PageObjects Logout = new PageObjects(_Driver); Logout.ClickLogout(); }
public void WhenLoggedIntoTrisus() { PageObjects Login = new PageObjects(_Driver); Login.LoginWithCredentials("BAkintunde", "Pa$$word2"); }