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
If you are receiving an element not clickable error, even after using wait on the element, try one of these workarounds:
Action to move to the location of element and then run perform on actionWebElement element = driver.findElement(By("element_path"));
Actions actions = new Actions(driver);
actions.moveToElement(element).click().perform();`
element and wait for its invisibilityBy spinnerimg = By.id("spinner ID");
WebDriverWait wait = new WebDriverWait(driver, timeOutInSeconds);
wait.until(ExpectedConditions.invisibilityOfElementLocated(spinnerimg ));
Hope this helps