如何在 Python 中使用 Selenium WebDriver 滚动网页
要从 Facebook 用户好友页面上的 AJAX 脚本中提取所有好友 ID,有必要向下滚动以收集所有信息。以下是如何使用 Python 在 Selenium 中实现此目的:
driver.execute_script("window.scrollTo(0, Y)")
其中 Y 表示所需的像素高度.
driver.execute_script("window.scrollTo(0, document.body.scrollHeight);")
SCROLL_PAUSE_TIME = 0.5 last_height = driver.execute_script("return document.body.scrollHeight") while True: driver.execute_script("window.scrollTo(0, document.body.scrollHeight);") time.sleep(SCROLL_PAUSE_TIME) new_height = driver.execute_script("return document.body.scrollHeight") if new_height == last_height: break last_height = new_height
label.sendKeys(Keys.PAGE_DOWN);
通过利用这些技术,您可以有效地滚动网页并使用 Selenium 和 Python 提取所需的数据。
以上是如何在 Python 中使用 Selenium WebDriver 滚动网页?的详细内容。更多信息请关注PHP中文网其他相关文章!