如何让 Selenium 使用真实证书打开 HTTPS URL?

发布于 2024-12-28 10:45:24 字数 581 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南风几经秋 2025-01-04 10:45:24

如果您的 https 需要证书,您将需要一个接受该证书的自己的 selenium firefox 配置文件。

谷歌如何在 selenium 中使用自定义的 Firefox 配置文件。

服务器命令行:

java -jar selenium-server.jar -log SeleniumServer.log -firefoxProfileTemplate "C:\ffprofile" -trustAllSSLCertificates

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:

java -jar selenium-server.jar -log SeleniumServer.log -firefoxProfileTemplate "C:\ffprofile" -trustAllSSLCertificates
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文