selenium grid listening on node port instead of hub port(selenium 网格监听节点端口而不是集线器端口)
问题描述
对于我的测试,我在不同的端口上本地运行网格和节点.
For my test, I am running grid and node locally on different ports.
因此,网格在 4444 上运行,节点在 5556 上运行.
So, the grid is running on 4444 and node is running on 5556.
在我的测试中,如果我启动驱动程序
In my test, if i start the driver as
那么测试失败并出现异常
then the test fails with the exception
如果我在节点端口 5555 而不是集线器端口 4444 上运行测试,则测试通过,如下所示
The test passed if i run the test on the node port 5555, instead of the hub port 4444, as shown below
我认为,我们应该在集线器端口上运行测试,在本例中是 4444 而不是 5555.
I was of the opinion that, we should be running the tests on the hub port, which in this case is 4444 and not 5555.
如果我错了,请纠正我.
Please correct me if i am wrong.
推荐答案
如果你打算在Grid
中使用Selenium
配置通过Hub
和Node
配置,我建议你使用最新的selenium-server-standalone-3.6.0
jar如下:
If you intend to use Selenium
in Grid
configuration through Hub
and Node
configuration, I would suggest you to use the most recent selenium-server-standalone-3.6.0
jar as follows:
启动
Selenium Grid Hub
(默认在端口 4444):
Start the
Selenium Grid Hub
(by default on port 4444) :
确认 Selenium Grid Hub
已启动:
Confirm the Selenium Grid Hub
is started:
访问 Selenium Grid Hub 控制台
并确保 Selenium Grid Hub
已启动并运行:
Access the Selenium Grid Hub Console
and ensure Selenium Grid Hub
is up and running:
为 Mozilla/GeckoDriver 启动 Selenium Grid Node
(默认在端口 5555):
Start the Selenium Grid Node
(by default on port 5555) for Mozilla/GeckoDriver:
确认Selenium Grid Node
已注册并启动:
Confirm the Selenium Grid Node
is registered and started:
使用 DesiredCapabilities
执行 Testcase
,如下所示:
Execute with the Testcase
with DesiredCapabilities
as follows:
在您的 Testcase
成功执行时,观察以以下结尾的控制台日志:
Observe the console logs ending with the following on successful execution of your Testcase
:
这篇关于selenium 网格监听节点端口而不是集线器端口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!