Esempio n. 1
0
 /// <summary>
 /// Click the 'Inactivate Postings' menu link when a record is marked in the 'List All Active Job Postings' page
 /// </summary>
 public void ClickInactivatePostings()
 {
     try
     {
         BaseWaitForPageToLoad(Driver, 100);
         InactivatePostingsLink.Click();
     }
     catch (Exception e) { throw e; }
 }
 /// <summary>
 /// Click the 'Inactivate Postings' menu link when a record is marked in the 'List All Active Job Postings' page
 /// </summary>
 public void ClickInactivatePostings()
 {
     InactivatePostingsLink.WaitAndClick(_driver);
 }