gpt4 book ai didi

selenium - 查找我的 selenium-grid 远程驱动程序在哪个节点上运行?

转载 作者:行者123 更新时间:2023-12-04 13:39:25 27 4
gpt4 key购买 nike

我按如下方式从中心获取 RemoteWebDriver:

RemoteWebDriver driver = new RemoteWebDriver( 
new URL("http://whatever:4444/wd/hub"),
DesiredCapabilities.internetExplorer() );

有没有办法以编程方式找出远程驱动程序在网格中的哪个节点上运行?

我想记录这个以努力追踪间歇性测试失败。

最佳答案

请引用我的这篇博文,了解如何找出测试路由到的节点 ip 和端口。

博文:https://rationaleemotions.wordpress.com/2016/01/15/where-did-my-test-run/

简而言之,这是你需要做的(我分享的博客有详细的解释和所需的代码)

  • 通过 Webdriver.getSessionId() 从 webdriver 获取 session ID
  • 然后您将从上一步获得的 session ID 附加到 URL http://localhost:4444/grid/api/testsession?session= (将 localhost 替换为实际的网格 IP/主机并将 4444 替换为网格正在监听的端口)并触发 POST 调用。
  • 从 JSON 响应中,您将属性 proxyId 的值解析为 URL,并从中提取 IP 和端口。

现在可以通过图书馆随时使用 talk2grid我 build 的。

关于selenium - 查找我的 selenium-grid 远程驱动程序在哪个节点上运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40925012/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com