Selenium 2 Grid - 了解您的测试正在使用哪个节点
是否可以知道 selenium grid hub 分配给您的测试的是哪个节点?我的测试需要与节点机器上的其他服务进行通信,以便执行 selenium 不支持的配置。
标记
Is it possible to know which node the selenium grid hub assigned to your test? My tests need to talk to other services on the node machine in order to perform configurations which are not supported by selenium.
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一般来说,您不应该依赖于知道您的测试在哪台机器上运行。 Grid 2 提供了一系列回调侦听器,您可以实现它们来提供机器配置。但是,如果您确实想查看测试正在哪个节点上运行,您可以使用其中一个 API 调用。两个端点都可以在中心找到:
http://localhost:4444/grid/api/proxy
http://localhost:4444/grid/api/testsession
都尚未记录。但如果你查看源代码,就很容易看出它们是如何工作的。您想要查看 ProxyStatusServlet 和 TestSessionStatusServlet。
Generally you shouldn't rely on knowing what machine your test is running on. Grid 2 provides a series of callback listeners that you could implement to provide machine configuration. But, if you really want to see what node a test is running on, you could use one of the API calls. Both endpoints can be found on the hub:
http://localhost:4444/grid/api/proxy
http://localhost:4444/grid/api/testsession
Neither are documented yet. But if you view the source, it's straightforward to see how they work. You want to look at the ProxyStatusServlet and TestSessionStatusServlet.