Selenium Remote Webdriver Server 与 Hudson CI 相似吗?
现在我正在使用 Hudson CI 在 xvnc 中启动浏览器并通过 Webdriver (2.0 之前)运行我的测试
我应该使用 Selenium 远程 webdriver 吗?这比 hudson ci 更有效率吗?
我想在 Amazon 上运行我的测试...是否有任何可以与 Amazon 集成的 selenium 远程 Webdriver 服务器或 Selenium Grid 插件?我应该选择 Grid 还是 Remotedriver 服务器?
我的最终目标是能够在 Amazon Selenium 上并行启动多个测试,并能够快速扩展和缩减。
现在我每月支付 100 美元购买带有 hudson CI 的服务器....但我永远不会使用全部容量....
Right now I am using Hudson CI to launch browser in xvnc and run my tests through Webdriver (pre 2.0)
Should I use Selenium remote webdriver instead? is that more efficient than hudson ci?
I want to run my tests on Amazon....are there any selenium remote webdriver server or Selenium Grid plugin that can already integrate with Amazon? Should I pursue Grid or remotedriver server?
My ultimate goal is to be able to launch multiple tests parallel on Selenium on Amazon and be able to quickly scale up and down.
Right now I pay $100/month for server that has hudson CI on it....but I never end up using the whole capacity....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
网格或远程服务器不会取代 Hudson 等 CI 工具。他们不会安排作业、并行测试、报告结果(包含历史记录)或在构建失败时发送电子邮件/IM 通知。
因此,您仍然需要 Hudson(或类似的)来处理所有这些事情,可能使用网格或远程服务器将运行浏览器的机器与运行测试的机器解耦。
Grid or the Remote Server does not replace a CI tool like Hudson. They will not schedule jobs, parallelize your tests, report results (with history) or send email/IM notifications when builds fail.
So you would still have Hudson (or similar) for all those things, possibly using Grid or the Remote Server to decouple the machine(s) running the browser(s) from the one running the tests.
Selenium Grid 将允许您并行启动多个测试。通过正确的配置,您甚至可以并行运行不同浏览器的测试。
Selenium grid 仍然使用 selenium 1.x 远程控制驱动程序。因此,如果您已经用 webdriver 代码编写了测试,那么您可能无法将其与当前的 Selenium 网格一起使用。 selenium grid 的新版本 - Grid 2.0 即将推出。这也将支持 webdriver。
Selenium Grid will allow you launch multiple tests in parallel. And with the right configuration you can even run the tests of different browsers in parallel.
Selenium grid is still using selenium 1.x remote control drivers. So if you already have your tests written in webdriver code, then you might not be able to use it with current Selenium grid. There is a new version of selenium grid - Grid 2.0 that will be out soon. That will be support webdriver as well.