Gradle 测试的 Selenide 远程浏览器配置
Selenide Remote browser config for Gradle Test
我正在准备我的项目,以便能够在 Bitbucket + Jenkins 下启动。
我需要 运行 使用远程 Selenium 服务器(如 Selenoid)的 Selenide 解决方案
如果我在 TestBase Class 中对配置进行基本设置,例如:
public void beforeTest(){
Configuration.remote = "http://localhost:4444/wd/hub";
}
它正在工作,但只有当 运行从 IntelliJ IDEA 而非控制台时才有效。
如果我 运行 Gradle test
它在本地启动 - 而不是 grid/selenoid。
我尝试将 属性 添加到 gradle.properties
文件中,例如:
systemProp.selenide.remote=http://localhost:4444/wd/hub
但这也不起作用。
与build.gradle文件相同。我尝试了很多选项:
systemProperty("selenide.remote", "http://localhost:4444/wd/hub")
systemProperties['selenide.remote'] = 'http://localhost:4444/wd/hub'
System.setProperty("selenide.remote", "http://localhost:4444/wd/hub")
所有这些都不适合我。
我使用 属性 从控制台添加到 Gradle:
gradle clean test -Dselenide.remote=http://localhost:4444/wd/hub
仍然没有按预期工作...:(
您对可能出错的地方有什么想法吗?
什么是正确的解决方案?
有效的解决方案是:
systemProperty("selenide.remote", "http://0.0.0.0:4444/wd/hub")
IntelliJ IDEA 可能还有一个问题。经过几次重新启动 + Invalidate/Restart 选项后,它工作正常。
我正在准备我的项目,以便能够在 Bitbucket + Jenkins 下启动。 我需要 运行 使用远程 Selenium 服务器(如 Selenoid)的 Selenide 解决方案
如果我在 TestBase Class 中对配置进行基本设置,例如:
public void beforeTest(){
Configuration.remote = "http://localhost:4444/wd/hub";
}
它正在工作,但只有当 运行从 IntelliJ IDEA 而非控制台时才有效。
如果我 运行 Gradle test
它在本地启动 - 而不是 grid/selenoid。
我尝试将 属性 添加到 gradle.properties
文件中,例如:
systemProp.selenide.remote=http://localhost:4444/wd/hub
但这也不起作用。
与build.gradle文件相同。我尝试了很多选项:
systemProperty("selenide.remote", "http://localhost:4444/wd/hub")
systemProperties['selenide.remote'] = 'http://localhost:4444/wd/hub'
System.setProperty("selenide.remote", "http://localhost:4444/wd/hub")
所有这些都不适合我。
我使用 属性 从控制台添加到 Gradle:
gradle clean test -Dselenide.remote=http://localhost:4444/wd/hub
仍然没有按预期工作...:(
您对可能出错的地方有什么想法吗? 什么是正确的解决方案?
有效的解决方案是:
systemProperty("selenide.remote", "http://0.0.0.0:4444/wd/hub")
IntelliJ IDEA 可能还有一个问题。经过几次重新启动 + Invalidate/Restart 选项后,它工作正常。