예제 #1
0
 /// <summary>
 /// Select the 'No' radio button for Internal applicants
 /// </summary>
 public void SelectInternalNoRadioButton()
 {
     try
     {
         BaseWaitForPageToLoad(Driver, 100);
         InternalNoRadioButton.Click();
     }
     catch (Exception e) { throw e; }
 }
 /// <summary>
 /// Select the 'No' radio button for Internal applicants
 /// </summary>
 public void SelectInternalNoRadioButton()
 {
     InternalNoRadioButton.WaitAndClick(_driver);
 }