因此,我有一台装有Windows 10 Pro的PC,并且通过VMWare工作站将虚拟Windows 10 Pro安装在同一台PC上,虚拟OS中的网络适配器模式设置为“ NAT”。
我在真实操作系统(hub)上运行此命令:
java -jar selenium-server-standalone-3.141.59.jar -role hub
在虚拟OS(节点)上的此命令:
java -jar selenium-server-standalone-3.141.59.jar -role node -nodeConfig nodeconfig.json
nodeconfig.json包含以下内容:
{
"capabilities":
[
{
"browserName": "chrome",
"maxInstances": 5,
"seleniumProtocol": "WebDriver"
}
],
"proxy": "org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
"maxSession": 5,
"port": -1,
"register": true,
"registerCycle": 5000,
"hub": "http://192.168.116.1:4444/grid/register/",
"nodeStatusCheckTimeout": 5000,
"nodePolling": 5000,
"role": "node",
"unregisterIfStillDownAfter": 60000,
"downPollingLimit": 2,
"debug": false,
"servlets" : [],
"withoutServlets": [],
"custom": {}
}
当我尝试将节点连接到集线器时,我在控制台中收到了以下消息:
Registered a node http://192.168.116.1:4444
Marking the node http://192.168.116.1:4444 as down: cannot reach the node for 2 tries
我该如何解决?我已经尝试将虚拟OS网络适配器模式设置为“桥接”,但是在这种情况下,我根本无法连接...
答案 0 :(得分:0)
这是防火墙的问题,关闭防火墙后一切正常。