我试图在Windows中使用selenium和firefox进行测试。我尝试将脚本连接到使用SSL证书的网站,浏览器会给我一条警告消息,停止测试。
我已经尝试过这个:
profile = webdriver.FirefoxProfile()
profile.accept_untrusted_certs = True
还有这个:
capabilities['acceptSslCerts'] = True
结果相同:它不起作用。
我正在使用最新的Firefox版本和Python 2.7