Selenium处理https 安全问题或者非信任站点(针对谷歌/火狐浏览器) 您所在的位置:网站首页 怎么设置受信任的网站地址 Selenium处理https 安全问题或者非信任站点(针对谷歌/火狐浏览器)

Selenium处理https 安全问题或者非信任站点(针对谷歌/火狐浏览器)

2024-07-16 13:11| 来源: 网络整理| 查看: 265

问题描述:

自动化脚本测试公司软件平台,软件使用的是https协议。使用谷歌浏览器访问时都遇到安全问题需要添加信任,必须要手动去处理。不然测试就进行不下去!

解决方法:

-谷歌浏览器-

options = webdriver.ChromeOptions()

options.add_argument('--ignore-certificate-errors')

driver = webdriver.Chrome(chrome_options=options)

driver.get(u'url地址')

-火狐浏览器-

profile = webdriver.FirefoxProfile()

profile.accept_untrusted_certs = True

driver = webdriver.Firefox(firefox_profile = profile)

driver.get(u'url地址')



【本文地址】

公司简介

联系我们

今日新闻

    推荐新闻

    专题文章
      CopyRight 2018-2019 实验室设备网 版权所有