如何从 NUnit 测试控制 Chrome 浏览器?
从 NUnit 测试控制 Chrome (pc/mac) 的最简单方法是什么?
我希望它做的事情:
- 使用我指定的代理服务器,
- 不会弹出任何需要单击的对话框。
- 打开我指定的 url
- close
使用 firefox,我可以通过写出临时的 firefox 配置文件并告诉 firefox 使用它来完成所有这些操作。如果有人知道 IE 这个问题的答案,我也很想听听。
What is the easiest way to control Chrome (pc/mac) from an NUnit test?
Things I want it to do:
- Use a proxy server I specify
- not bring up any dialog boxes that need to be clicked.
- open a url I specify
- close
With firefox I can do all these things by writing out a temp firefox profile, and telling firefox to use it. If someone knows an answer to this question for IE, I'd also love to hear about it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要Watin
You need Watin
您可以使用 Watir 来执行此操作:
http://watirwebdriver.com/browser-proxies/
不幸的是我不知道你是否可以使用Ironruby 的 Watir 使这项工作可以在 NUnit 测试中工作,而无需许多 ruby 依赖项。
You can use Watir to do this:
http://watirwebdriver.com/browser-proxies/
Unfortunately I don't know if you can use Watir from Ironruby to make this work in an NUnit test without having to many ruby dependencies.