Webdriver:如何在虚拟环境中设置IE?

发布于 2024-12-07 01:01:39 字数 585 浏览 1 评论 0原文

我正在为基于网格的 Webdriver 测试设置虚拟环境。果然,IE驱动有问题。

首先,Internet选项→安全应该具有相同的保护模式设置。如果您有权访问浏览器,这是一个简单的修复方法,但就我而言,我无法实际访问浏览器。 在 Webdriver 的常见问题解答中,它说您可以执行以下操作:

DesiredCapabilities capabilities = DesiredCapabilities.internetExplorer();    
capabilities.set(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true);
WebDriver driver = new InternetExplorerDriver(capabilities);

Ruby 绑定没有参考在 IE 中设置此功能。有没有办法用 Ruby 编写它?

另一件事是如何应对“不安全连接”弹出窗口?同样,它们在第一次运行后很容易手动处理,但是每次运行“干净”的 IE 实例又如何呢?

或许还有更多的顾虑 我想听听你的意见。

谢谢你!

I am setting up the Virtual Environment for my grid-based Webdriver tests. And sure enough, there are problems with IE driver.

First of all, Internet Options → Security should have the same Protected Mode setting. It's an easy fix if you have an access to the browser, but in my case, I won't have physical access to the browser.
In Webdriver's FAQ it says you can do the following:

DesiredCapabilities capabilities = DesiredCapabilities.internetExplorer();    
capabilities.set(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS, true);
WebDriver driver = new InternetExplorerDriver(capabilities);

Ruby bindings have no reference to setting up this capability in IE. It there a way to code it out in Ruby?

The other thing is what can be done against "unsecure connection" pop-ups? Again, they are easy to deal with manually after the first run, but what about running "clean" IE instance each time?

There are probably more concerns,
I'd like to hear your opinion.

Thank you!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文