我有一个简单的硒测试(非junit),我想通过Maven运行它。我把我的课放在src / test下。
POM文件如下:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<executions>
<execution>
<id>my-execution</id>
<phase>test</phase>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>SeleniumMavenTest.SeleniumMavenTest</mainClass>
<classpathScope>test</classpathScope>
</configuration>
现在,Maven已作为插件嵌入在Eclipse中。我正在运行Maven clean然后安装Maven,但是我正在获取MojoExecutionException(未找到类)。
以下错误:
java.lang.ClassNotFoundException:SeleniumMavenTest.SeleniumMavenTest
谁能告诉我如何使用Maven触发简单的测试(非JUnit)以及这里出了什么问题?