我正在尝试使用maven设置selenium但是在声明驱动程序时遇到此错误

时间:2018-04-04 11:34:46

标签: selenium

我正在尝试使用maven构建工具设置selenium项目。

我已经定义了依赖项,但仍然在脚本中出现此错误。

Eclipse screenshot

1 个答案:

答案 0 :(得分:0)

您的屏幕截图表明您没有org.openqa.selenium。由于这是Selenium Java的一部分,因此您需要在pom文件中包含此依赖项:

<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
<dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-java</artifactId>
    <version>3.11.0</version>
</dependency>

https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java/3.11.0