How to scroll down on my page through Selenium and Python?
问题 Trying to scroll down to the bottom of the page https://silpo.ua/offers/?categoryId=13 but there is no result (no movements) My code: import bs4 from selenium import webdriver from selenium.webdriver.common.keys import Keys import time URL = "https://silpo.ua/offers/?categoryId=13" driver = webdriver.Firefox() driver.get(URL) page = driver.find_element_by_tag_name("html") page.send_keys(Keys.PAGE_DOWN) html = driver.page_source 回答1: There are several approaches to scroll down to the bottom of