我收到此错误:“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位置指定为参数:
原文链接:https://www.f2er.com/python/438725.htmlchrome_path = r"/Users/anncolvin/.rvm/bin/chromedriver"
browser = webdriver.Chrome(chrome_path,chrome_options=options)