我在运行Maven Project时遇到了Maven编译器错误

时间:2016-08-24 03:17:52

标签: java eclipse maven selenium pom.xml

enter image description here

有人可以给我一些建议我该如何解决这个问题?

Maven版本:4.0.0

行家编译-插件:3.5.1

enter image description here

2 个答案:

答案 0 :(得分:0)

您似乎对org.openqa.selenium没有依赖性 尝试在pom.xml

中添加org.openqa.selenium的依赖项

答案 1 :(得分:0)

在pom.xml中添加selenium依赖项

<dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-support</artifactId>
    <version>2.53.0</version>
</dependency>