美文网首页
MAC下运行Python3+selenium+chrome遇到的

MAC下运行Python3+selenium+chrome遇到的

作者: 奇_66a0 | 来源:发表于2017-06-13 16:42 被阅读0次

    1.调用webdriver.chrome(),打开浏览器,出现“您使用的不受支持的命令行标记:-extensions-on-chrome-urls。稳定性和安全性有所下降”

    加入下面一段代码,可解决:

    options = webdriver.ChromeOptions()

    options.add_experimental_option("excludeSwitches", ["ignore-certificate-errors"])

    browser = webdriver.Chrome(chrome_options=options)

    2.打开chrome后,执行get("https://www.baidu.com")报错

    原因:我安装的chromedriver为32位的,重新下载64位chromedriver的即可解决,下载地址:https://sites.google.com/a/chromium.org/chromedriver/downloads。

    相关文章

      网友评论

          本文标题:MAC下运行Python3+selenium+chrome遇到的

          本文链接:https://www.haomeiwen.com/subject/acadqxtx.html