如何在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中文網其他相關文章!