在无头模式下隐藏 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中文网其他相关文章!