Example #1
0
 public void ClickPrevious(bool toNewUrl, string nextPageUrl)
 {
     WaitElementClickable("RAR_PreviousSection");
     RAR_PreviousSection.Click();
     if (toNewUrl)
     {
         browser.Driver.Url = nextPageUrl;
     }
 }
Example #2
0
 public bool IsPreviousButtonEnabled()
 {
     return(!RAR_PreviousSection.GetAttribute("class").ToLower().Contains("disabled"));
 }