Selenium Grid 2 使用 Ruby 进行测试
我最近发现了 Selenium Grid 2。我之前使用过 Grid、IDE 和 RC,编写测试非常简单,尤其是原始 Grid。 (也许是因为我从未使用过网络驱动程序?)
Grid 2 文档在编写实际测试方面仍然相当不稳定。
谁能帮我开始 Ruby 测试?也许只是一个简单的例子就可以了。
另外 DeepTest 与 Grid 2 的集成怎么样...或者类似的东西。
提前致谢。
I recently discovered Selenium Grid 2. I have used Grid, IDE and RC before, for which writing tests was pretty trivial, especially with the original Grid. (maybe because I never used web-driver?)
Grid 2 documentation is still pretty flaky regarding writing actual tests.
Can anyone get me started with Ruby tests? Perhaps just a simple example would do.
Also what about DeepTest integration with Grid 2... or something similar.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于任何可能感兴趣的人,测试将采用这种格式:
该测试旨在远程运行,如果您想在本地运行它,则将:
从
更改为
http://code.google.com/p/selenium/wiki/RubyBindings 是这一切的一个很好的参考。
For anyone who might be interested, the tests would be in this kind of format:
The test is meant to be run remotely, if you want to run it locally then change:
from
to
http://code.google.com/p/selenium/wiki/RubyBindings is a good reference for all this.