在制作 RemoteWebDriver 对象时,我们需要传递 URL 和 DesiredCapability 对象。浏览网上的不同教程,我发现在某些情况下他们正在传递 Node 的 URL,而在其他情况下他们正在传递 HUB 的 URL。请明确使用 Hub 或 Node Url 中的哪一个。 https://github.com/SeleniumHQ/selenium/wiki/Grid2
WebDriver driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capability);
在本教程和其他教程中,他们使用了节点的 url http://www.guru99.com/introduction-to-selenium-grid.html