使用 HTTPS 时如何为 IE9 配置 Selenium
我正在尝试让 Selenium 测试通过 PHPUnit 工作。我的测试在 Firefox 中通过,但在 IE9 中不行。在IE中,无论我尝试过什么设置组合,当Selenium服务器运行时,IE都不会直接进入该页面,而是显示“该网站的安全证书有问题”。
如果我关闭 Selenium,我可以使用 IE 访问正在测试的网站,没有任何问题。 我尝试告诉 IE CyberVillians 证书没问题,我已将该证书添加到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
解决方案确实是放弃使用 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.