使用python通过selenium模拟打开chrome窗口报错 出现 "您使用的是不受支持的命令行标记:--ignore-certificate-errors
Posted 殊胜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用python通过selenium模拟打开chrome窗口报错 出现 "您使用的是不受支持的命令行标记:--ignore-certificate-errors相关的知识,希望对你有一定的参考价值。
#在程序前加上这段代码 from selenium import webdriver options = webdriver.ChromeOptions() options.add_experimental_option("excludeSwitches",["ignore-certificate-errors"]) driver = webdriver.Chrome(chrome_options=options)
以上是关于使用python通过selenium模拟打开chrome窗口报错 出现 "您使用的是不受支持的命令行标记:--ignore-certificate-errors的主要内容,如果未能解决你的问题,请参考以下文章
如何通过 Selenium 打开 Chrome 浏览器控制台?
Python+Selenium练习篇之4-利用link text定位元素