Example #1
0
 /// <summary>
 /// Click the "Save and Next" button on the Edit/Create Job Posting page
 /// </summary>
 public void ClickSaveAndNextButton()
 {
     try
     {
         BaseWaitForPageToLoad(Driver, 100);
         SaveAndNextButton.Click();
     }
     catch (Exception e) { throw e; }
 }
Example #2
0
 /// <summary>
 /// Click the "Save and Next" button on the Edit/Create Job Posting page
 /// </summary>
 public void ClickSaveAndNextButton()
 {
     SaveAndNextButton.WaitAndClick(_driver);
 }