Selenium-Debugging: Element is not clickable at point (X,Y)

Another element is covering the element you are trying to click. You could use execute_script() to click on this.

element = driver.find_element_by_class_name('pagination-r')
driver.execute_script("arguments[0].click();", element)

Leave a Comment