如何让 Selenium 使用真实证书打开 HTTPS URL?
我正在尝试使用 selenium 来自动执行一些基于浏览器的数据输入。目标 URL 是 HTTPS,但它是一个实际的公共网站,而不是自签名证书。我正在运行以下代码:
from selenium import selenium
import unittest, time, re
class python_2_remote_control(unittest.TestCase):
def setUp(self):
self.verificationErrors = []
self.selenium = selenium("localhost", 4444, "*chrome", "https://actualurl")
self.selenium.start()
def test_python_2_remote_control(self):
sel = self.selenium
sel.type("id=loginid", "etc.")
more...
代理加载,但实际的 URL 似乎从未加载到其中,我的第一个登录命令都失败。知道什么地方可能会失败吗?
I'm attempting to use selenium to automate some browser-based data entry. The target URL is HTTPS, but it's an actual public website and not a self-signed cert. I'm running the following code:
from selenium import selenium
import unittest, time, re
class python_2_remote_control(unittest.TestCase):
def setUp(self):
self.verificationErrors = []
self.selenium = selenium("localhost", 4444, "*chrome", "https://actualurl")
self.selenium.start()
def test_python_2_remote_control(self):
sel = self.selenium
sel.type("id=loginid", "etc.")
more...
The proxy loads, but the actual URL never seems to load in it, any my first command to login fails. Any sense of what could be failing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的 https 需要证书,您将需要一个接受该证书的自己的 selenium firefox 配置文件。
谷歌如何在 selenium 中使用自定义的 Firefox 配置文件。
服务器命令行:
If your https requires a certificate you will need an own selenium firefox profile which accepted the certificate.
Google how to use custom firefox profiles within selenium.
The server command line: