我正在尝试将Selenide 5.0.0
与TestContainers 1.9.1
一起使用
dependencies {
testCompile 'com.codeborne:selenide:5.0.0'
testCompile 'org.testcontainers:selenium:1.9.1'
}
显然,这些版本不兼容,原因是在我运行测试时得到:
java: cannot access org.openqa.selenium.WrapsDriver class file for org.openqa.selenium.WrapsDriver
enter code here
硒化物4.12.3
一切正常
答案 0 :(得分:0)
您可以尝试将其添加到maven pom依赖项中,例如在使用Java时:
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>3.141.59</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-api</artifactId>
<version>3.141.59</version>
</dependency>