Selenium程序抛出编译错误org.openqa.selenium.internal.Killable无法解析
我已经使用Selenium和Maven创建了一个新的Java项目。这是在pom.xml中的相关内容Selenium程序抛出编译错误org.openqa.selenium.internal.Killable无法解析
<dependencies> <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.45.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-chrome-driver -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>
然后我创建了一个使用硒框架这个基本的Java程序:
import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver;
public class Start {
public static void main(String[] args) {
// declaration and instantiation of objects/variables
System.setProperty("webdriver.firefox.marionette", "D:\\geckodriver.exe");
WebDriver driver = null;
try {
driver = new FirefoxDriver();
String baseUrl = "https://www.google.co.in/";
driver.get(baseUrl);
} finally {
driver.close();
}
}
}
不过,我得到这个编译错误:
The type org.openqa.selenium.internal.Killable cannot be resolved. It is indirectly referenced from required .class files
有人可以建议我哪里错了吗?
回答:
从pom.xml
删除此依赖关系:
<dependency> <groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-chrome-driver</artifactId>
<version>3.8.1</version>
</dependency>
您正在使用Selenium Java绑定的vesrion 2.45.0(于2015年2月出版):
<dependency> <groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.45.0</version>
</dependency>
如果检查编译以上软件包的依赖关系:https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java/2.45.0
你会看到这个软件包d依靠selenium-chrome-driver 2.45.0
包裹。 Maven在编译过程中会自动解决这个依赖问题,所以你不需要在pom.xml
中声明这个包。文件。
但是如果你声明这个包selenium-chrome-driver
作为pom.xml
文件直接依赖,使用不同的版本(最新3.8.1
),然后行家将使用编译时该版本3.8.1
而不是2.45.0
,这将导致使用错误错误,不兼容的jar库。
以上是 Selenium程序抛出编译错误org.openqa.selenium.internal.Killable无法解析 的全部内容, 来源链接: utcz.com/qa/259911.html