不支持的命令行标志:--ignore-certificate-errors
使用Python 2.7.5,python模块selenium(2.41.0)和chromedriver(2.9)。
Chrome启动后,会在黄色的弹出栏中显示一条消息:“您正在使用不受支持的命令行标志:-ignore-certificate-
errors。稳定性和安全性将受到损害。” 这个简单的例子重现了问题。
from selenium import webdriverbrowser = webdriver.Chrome()
browser.get("http://google.com/")
如何在python selenium中删除此命令行标志?
回答:
从Chromedriver
2.11(2014年10月发布)开始已解决此问题。更新将解决问题。
以上是 不支持的命令行标志:--ignore-certificate-errors 的全部内容, 来源链接: utcz.com/qa/400862.html