gpt4 book ai didi

python - 如何通过 Selenium 和 Python 在我的页面上向下滚动?

转载 作者:行者123 更新时间:2023-11-28 20:57:13 25 4
gpt4 key购买 nike

试图向下滚动到页面底部 https://silpo.ua/offers/?categoryId=13但是没有结果(没有动静)

我的代码:

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

最佳答案

有几种方法可以向下滚动到页面底部。根据 url https://silpo.ua/offers/?categoryId=13copyright 消息位于页面底部。因此,您可以使用 scrollIntoView() 方法在 Viewport 中滚动 copyright 消息如下:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC

URL = "https://silpo.ua/offers/?categoryId=13"
driver = webdriver.Firefox(executable_path=r'C:\WebDrivers\geckodriver.exe')
driver.get(URL)
copyright = WebDriverWait(driver, 20).until(EC.visibility_of_element_located((By.CSS_SELECTOR, "div.copyrights")))
driver.execute_script("return arguments[0].scrollIntoView(true);", copyright)

关于python - 如何通过 Selenium 和 Python 在我的页面上向下滚动?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53571352/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com