I try to scrape this site by Selenium.
I want to click in \"Next Page\" buttom, for this I do:
driver.find_element_by_class_name(\'pagination-r\').c
Use explicit wait instead of implicit.
new WebDriverWait(TestingSession.Browser.WebDriver, TimeSpan.FromSeconds(10)).Until(ExpectedConditions.ElementExists((By.ClassName("pagination-r'"))));