gpt4 book ai didi

python - Selenium-Python 与 chromium 浏览器(Windows)

转载 作者:太空宇宙 更新时间:2023-11-03 14:00:16 26 4
gpt4 key购买 nike

我正在尝试在 Windows 8 上使用 selenium python 启动 chromium 浏览器。

添加了 binary_location 作为 chromium 二进制位置,即 appdata。但 chromedriver 仍然启动 google chrome 而不是 chromium。

如果我卸载 google chrome,则 chromedriver 默认启动 chromium。但安装了 chrome 后,它总是会启动 chrome。

有人知道如何在安装 chrome 的情况下使用 selenium 启动 chromium 吗?

请不要将其标记为重复。另一篇是关于 unix 以及为 selenium java 提供的解决方案,而这一篇是关于 windows 和 python 的。

最佳答案

试试这个:

from selenium.webdriver.chrome.options import Options

options = Options()
options.binary_location = r"D:\.....\chrome.exe"
# This line defines your Chromium exe file location.

driver = webdriver.Chrome(chrome_options=options)
driver.get('https://www.google.com/')

为我工作。 我安装了 Chrome 和 Chromium。 它启动指定的 exe。

关于python - Selenium-Python 与 chromium 浏览器(Windows),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49298245/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com