public void ClickApplicantDashboard() { Console.Out.WriteLineAsync("Page: Attempting to Click ApplicantDashboard Link"); try { ApplicantDashboard.Click(); BaseWaitForPageToLoad(Driver, 10); } catch (Exception e) { throw e; } }
/// <summary> /// Click the Applicant Dashboard link on the Applicants submenu /// </summary> public void ClickApplicantDashboard() { ApplicantDashboard.WaitRetry(_driver).Click(); }