我正在使用selenium webdriver,JUNIT, maven设置selenium maven项目。
所以在pom.xml我给了硒相关的依赖…生成Junit报告的所有插件和依赖项是什么?
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.5</version>
<type>maven-plugin</type>
</dependency> <reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.5</version>
<configuration>
<outputName>MavenSeleniumTestResults</outputName>
</configuration>
</plugin>
</plugins>