使用Selenium、JUNIT、MAVEN生成报告的插件、依赖项是什么?



我正在使用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>

相关内容

  • 没有找到相关文章