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

时间:2017-04-13 02:25:59

标签: python command-line path selenium-chromedriver chrome-options

我收到了这个错误:" 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/")

1 个答案:

答案 0 :(得分:3)

您需要做的就是在调用Chrome webdriver时将webdriver位置指定为参数:

chrome_path = r"/Users/anncolvin/.rvm/bin/chromedriver"
browser = webdriver.Chrome(chrome_path, chrome_options=options)