在 Python 中使用 Selenium Grid/RC 时出现问题
我使用 Selenium 构建了几个测试用例作为独立的 python 类。我可以使用 Selenium RC 运行它们中的每一个。最终我想使用 Selenium Grid 来运行所有测试用例。
我该怎么做?
我是否需要某种包装器来将 python 测试用例保存在一起?我如何让 Selenium Grid 运行这些集合?
感谢您的帮助。
I have built a couple of test cases as stand alone python classes using Selenium. I can run each of them using Selenium RC. Ultimately I want to use Selenium Grid to run all of the test cases.
How would I do this?
Do I need some kind of wrapper to hold of of the python test cases together? How do I get Selenium Grid to run a collection of these?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议看看使用 Nose 并行运行
测试这里有关于如何运行它的文档
I would suggest having a look at running your tests in Parallel using Nose
There is documentation on how to get it running here