gpt4 book ai didi

java - 无法在 Testcontainers 中使用 Chrome 驱动程序使用 Selenium 打开任何 URL

转载 作者:行者123 更新时间:2023-12-02 04:30:18 24 4
gpt4 key购买 nike

我正在尝试在 Testcontainers 内的 JUnit 测试中使用 Selenium 在项目上设置 UI 测试框架,并使用 IntelliJ IDE 进行开发。我使用的是 OpenJDK 12.0.1

我有我能想到的最基本的测试,但是当我尝试访问任何网站(维基百科、谷歌等)时,我不断收到空指针异常

我在这里遗漏了一些重要的东西吗?

这是我设置的测试:

public class SimpleTest {

@Rule
public BrowserWebDriverContainer chrome = new BrowserWebDriverContainer()
.withCapabilities(new ChromeOptions());

@Test
public void simplePlainSeleniumTest() {
RemoteWebDriver driver = chrome.getWebDriver();

driver.get("https://google.com");

assertTrue("This should always pass", true);
}

}

在我的 gradle 文件中,我导入以下内容:

compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '3.141.59'
compile group: 'org.seleniumhq.selenium', name: 'selenium-remote-driver', version: '3.141.59'
testCompile group: 'org.testcontainers', name: 'selenium', version: '1.11.3'
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.2.0'
testRuntimeOnly group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.2.0'
test {
useJUnitPlatform()
}

我的 testcontainers.properties 文件中没有特殊设置

如果我理解我所见过的所有示例,这应该是:

  1. 通过 testcontainers 在 Docker 容器内打开测试。
  2. 在该容器内创建 Chrome 驱动程序。
  3. 导航到给定网站(在上面的示例中为 google.com)
  4. 通过,因为 true = true

但是无论我如何更改代码,我都会遇到以下错误:

selenium.SimpleTest > simplePlainSeleniumTest() FAILED
java.lang.NullPointerException at SimpleTest.java:34

第 34 行是:driver.get("https://google.com");

最佳答案

您正在使用不支持规则的 JUnit Jupiter。 Testcontainers中有单独的Jupiter支持,请参见以下页面: https://www.testcontainers.org/test_framework_integration/junit_5/

基本上,您需要添加 org.testcontainers:junit-jupiter:1.11.3 依赖项,使用 @Testcontainers 注释您的测试类并替换 @Rule @Container

关于java - 无法在 Testcontainers 中使用 Chrome 驱动程序使用 Selenium 打开任何 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56591202/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com