我正在使用 Selenium webdriver、JUNIT、MAVEN 设置 selenium maven 项目。
所以在 pom.xml 中我给出了与 selenium 相关的依赖项。生成 Junit 报告的所有插件和依赖项是什么?
我正在使用 Selenium webdriver、JUNIT、MAVEN 设置 selenium maven 项目。
所以在 pom.xml 中我给出了与 selenium 相关的依赖项。生成 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>