-1

我正在使用 Selenium webdriver、JUNIT、MAVEN 设置 selenium maven 项目。

所以在 pom.xml 中我给出了与 selenium 相关的依赖项。生成 Junit 报告的所有插件和依赖项是什么?

4

1 回答 1

0
<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>

于 2013-03-19T14:21:57.173 回答