コード例 #1
0
 public void ProgressToNextPage()
 {
     if (_c.VideoWebConfig.TestConfig.TargetBrowser == TargetBrowser.Ie11)
     {
         return;
     }
     _loginSharedSteps = new LoginSharedSteps(_browsers[_c.CurrentUser], _c.CurrentUser.Username, _c.VideoWebConfig.TestConfig.TestUserPassword);
     _loginSharedSteps.ProgressToNextPage();
 }
コード例 #2
0
 public void ProgressToNextPage()
 {
     if (_c.VideoWebConfig.TestConfig.TargetBrowser == TargetBrowser.Ie11) return;
     SelectUserType();
     _loginSharedSteps = new LoginSharedSteps(_browsers[_c.CurrentUser], _c.CurrentUser.Username, _c.VideoWebConfig.TestConfig.TestUserPassword);
     _loginSharedSteps.ProgressToNextPage();
     if (IsAnEjudUser())
     {
         _browsers[_c.CurrentUser].ClickRadioButton(AccountTypeSelectionPage.DoNotStayLoggedInButton);
     }
 }
コード例 #3
0
 public void ProgressToNextPage()
 {
     NUnit.Framework.TestContext.WriteLine($"The login data is Username: {_c.CurrentUser.Username}, UserType: {_c.CurrentUser.UserType}, Testtype: {_c.CurrentUser.TestType}");
     _loginSharedSteps = new LoginSharedSteps(_browsers[_c.CurrentUser], _c.CurrentUser.Username, _c.WebConfig.TestConfig.TestUserPassword);
     _loginSharedSteps.ProgressToNextPage();
 }
コード例 #4
0
 public void ProgressToNextPage()
 {
     _loginSharedSteps = new LoginSharedSteps(_browsers[_c.CurrentUser], _c.CurrentUser.Username, _c.WebConfig.TestConfig.TestUserPassword);
     _loginSharedSteps.ProgressToNextPage();
 }
コード例 #5
0
 public void WhenTheParticipantAccessesTheApplicationUsingTheResetPassword()
 {
     _browserSteps.GivenANewBrowserIsOpenFor(_participant.LastName);
     _loginSteps = new LoginSharedSteps(_browsers[_c.CurrentUser], _c.CurrentUser.Username, _c.WebConfig.AzureAdConfiguration.TemporaryPassword);
     _loginSteps.ProgressToNextPage();
 }