如何在無頭模式下隱藏ChromeDriver可執行檔?

Susan Sarandon
發布: 2024-11-11 15:03:02
原創
652 人瀏覽過

How to Hide the ChromeDriver Executable File in Headless Mode?

在無頭模式下隱藏ChromeDriver 可執行檔案

在無頭模式下使用Selenium 的Chromedriver 時,您可能會遇到後台.exe 檔案正在運行,儘管瀏覽器視窗保持隱藏狀態。要解決此問題,請按照以下步驟操作:

對於Selenium 4.0 及更高版本,請使用以下程式碼:

from selenium import webdriver

options = webdriver.ChromeOptions()
options.headless = True
# The following may be necessary depending on your environment.
options.add_argument('--disable-gpu')
driver = webdriver.Chrome(chrome_options=options)
登入後複製

對於較舊的Selenium 版本,請使用以下程式碼:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

options = Options()
options.add_argument('--headless')
options.add_argument('--disable-gpu')  # Last I checked this was necessary.
driver = webdriver.Chrome(chrome_driver_path, chrome_options=options)
登入後複製

請記住,無頭模式會隱藏瀏覽器窗口,但透過.exe 檔案仍然可以看到Chromedriver的執行。要完全隱藏此執行,您可以探索其他選項,例如 BrowserStack 或 Sauce Labs。這些服務支援自動化瀏覽器測試,而無需透露底層瀏覽器實例。

以上是如何在無頭模式下隱藏ChromeDriver可執行檔?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板