我有 selenium-server-standalone.jar 在我的本地机器上运行,并且我想在我的远程机器上编译运行的测试,但我不知道如何让测试连接到将运行浏览器的机器。任何帮助表示赞赏。
更新:在我的本地机器上(我将运行浏览器的机器)我跑了
java -jar selenium-server-standalone-2.25.0.jar -mode hub
在我的远程机器上(我将运行测试)我跑了
java -jar selenium-server-standalone-2.25.0.jar -role webDriver -hub http://**My ip*:4444
我的代码包含以下内容:
@Before
public void setUp() throws Exception {
DesiredCapabilities capability = DesiredCapabilities.firefox();
driver = new RemoteWebDriver(new URL("http://**My ip**:4444/wd/hub"),
capability);
baseUrl = "http://phy05:8080";
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
driver.manage().timeouts().pageLoadTimeout(30, TimeUnit.SECONDS);
driver.manage().window().setSize(new Dimension(1920, 1080));
我正在使用 Linux,我的测试是用 Java 编写的