Exemplo n.º 1
0
 /// <summary>
 /// Select the "Yes" radio button of the "Display Info" pane on the "Main" tab
 /// </summary>
 public void SelectDisplayInfoYesRadioButton()
 {
     try
     {
         BaseWaitForPageToLoad(Driver, 100);
         DisplayInfoYesRadioButton.Click();
     }
     catch (Exception e) { throw e; }
 }
 /// <summary>
 /// Select the "Yes" radio button of the "Display Info" pane on the "Main" tab
 /// </summary>
 public void SelectDisplayInfoYesRadioButton()
 {
     DisplayInfoYesRadioButton.WaitAndClick(_driver);
 }