Answer the question
In order to leave comments, you need to log in
Why is the error Message: Element is not clickable at point (782,28) because another element?
Two pages scroll 3 no(
import time
from selenium import webdriver
url = 'https://www.dns-shop.ru/catalog/17a89aab16404e77/videokarty/?p=1'
options = webdriver.FirefoxOptions()
options.set_preference("dom.webdriver.enabled", False)
driver = webdriver.Firefox(executable_path="Y:\\projects\\apppython2\\geckodriver-v0.30.0-win64\\geckodriver.exe", options=options)
from selenium.webdriver.common.by import By
try:
driver.get(url)
time.sleep(5)
SCROLL_PAUSE_TIME = 2
h = 4600
while True:
pageY = driver.execute_script("return window.pageYOffset")
nextEl = driver.find_element(By.CLASS_NAME, 'pagination-widget__show-more-btn')
driver.execute_script("window.scrollTo(0, window.scrollY + 200)")
time.sleep(SCROLL_PAUSE_TIME)
if int(pageY) >= h:
nextEl.click()
h = h + h
continue
except Exception as ex:
print(ex)
finally:
driver.close()
driver.quit()
Answer the question
In order to leave comments, you need to log in
While Selenium tried to click on the desired element, something blocked it. This often happens when there are some animations or transitions.
To minimize such errors, I recommend using explicit waiters . This functionality allows you to wait for some event. For example:
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question