我还可以在Python中使用ChromeOptions指定chromedriver的路径吗?

前端之家收集整理的这篇文章主要介绍了我还可以在Python中使用ChromeOptions指定chromedriver的路径吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我收到此错误:“WebDriverException:消息:’chromedriver’可执行文件需要在PATH中.”
我能够解决它的唯一方法是手动添加chromedriver的一个位置,如下所示:

driver = webdriver.Chrome("/Users/anncolvin/.rvm/bin/chromedriver")

Chrome启动后,我收到此错误:“您正在使用不受支持的命令行标记:–ignore-certifcate-errors.稳定性和安全性将受到影响.”

我想尝试使用以下代码解决这个新错误,但我不知道如何将它与手动指定chromedriver的位置结合起来?

options = webdriver.ChromeOptions()
options.add_experimental_option("excludeSwitches",["ignore-
certificate-errors"])
browser = webdriver.Chrome(chrome_options=options)
browser.get("http://google.com/")
最佳答案
您所要做的就是在调用Chrome webdriver时将webdriver位置指定为参数:

chrome_path = r"/Users/anncolvin/.rvm/bin/chromedriver"
browser = webdriver.Chrome(chrome_path,chrome_options=options)
原文链接:https://www.f2er.com/python/438725.html

猜你在找的Python相关文章