我收到此错误:“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/")