使用Selenium 在無頭模式下運行Chrome:解析持久可執行視窗
為了在不可見的瀏覽器視窗的情況下執行網頁抓取,Selenium 使用者經常使用ChromeDriver 具有「無頭」選項。然而,一些使用者報告即使在啟用無頭模式後也會遇到持久的可執行視窗(.exe 檔案)。
為了解決此問題,我們提供了一個與Python 2.7 相容的解決方案,可以有效地抑制可執行視窗:
from selenium import webdriver from selenium.webdriver.chrome.options import Options options = Options() options.add_experimental_option("excludeSwitches", ["ignore-certificate-errors"]) options.add_argument('headless') options.add_argument('window-size=0x0') chrome_driver_path = "C:\Python27\Scripts\chromedriver.exe" driver = webdriver.Chrome(executable_path=chrome_driver_path, options=options)
其他注意事項:
結論:
透過實現此修改後的程式碼,您可以在無頭模式下有效運行 Chrome,而無需出現瀏覽器視窗。此解決方案解決了使用者遇到的可執行檔持久性問題。
以上是為什麼 Chrome 即使在使用 Selenium 的無頭模式下仍然顯示可執行視窗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!