使用 HTTPS 时如何为 IE9 配置 Selenium

发布于 2024-12-11 10:27:01 字数 311 浏览 1 评论 0原文

我正在尝试让 Selenium 测试通过 PHPUnit 工作。我的测试在 Firefox 中通过,但在 IE9 中不行。在IE中,无论我尝试过什么设置组合,当Selenium服务器运行时,IE都不会直接进入该页面,而是显示“该网站的安全证书有问题”。
如果我关闭 Selenium,我可以使用 IE 访问正在测试的网站,没有任何问题。 我尝试告诉 IE Cyber​​Villians 证书没问题,我已将该证书添加到 IE 的证书列表中,并尝试了各种 Selenium Server 命令行选项。 无论如何,我使用的是最新的 Selenium 和 PHPUnit 文件(今天下载)。 有什么想法吗?

I'm trying to get Selenium tests to work through PHPUnit. My tests pass in Firefox, but not in IE9. In IE, no matter what combination of settings I've tried, when the Selenium server is running IE will not go directly to the page, and instead displays "There is a problem with this website's security certificate".
If I shut down Selenium, I can use IE to access the site being tested with no problems.
I've tried telling IE that the CyberVillians cert is OK, I've added the cert to IE's list of certs, and tried various Selenium Server command line options.
For what it's worth, I'm using the very latest Selenium and PHPUnit files (downloaded today).
Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

青芜 2024-12-18 10:27:01

解决方案确实是放弃使用 Selenium RC。
我最终使用了 chibimagic 的 PHP Webdriver,一切都很好。我可能最终会编写一个代理类,以使界面更像 PHPUnit_Extensions_SeleniumTestCase。这样,我可以使用 Selenium IDE、PHP 格式化程序来编写测试脚本,然后粘贴到我的单元测试中。

The solution was indeed to abandon using Selenium RC.
I ended up using chibimagic's Webdriver for PHP, and everything works great. I'll probably end up writing a brokering class to make in interface more like that of PHPUnit_Extensions_SeleniumTestCase. That way, I can work up test scripts using Selenium IDE, using their PHP formatter, and then just paste into my unit test.

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