Testng-Xslt报告未生成

时间:2016-01-05 15:23:48

标签: maven selenium pom.xml

我经历了很多帖子和博客,但无法通过maven生成reportng或testng-xslt报告。最后我得到了这个教程,但没有运气。我不明白我错过了什么。 这就是我尝试过的:它在目标文件夹中成功生成了surefire报告,但是“不创建(生成报告)reportng报告的目录。以下是我的Pom.xml文件。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>tiger</groupId>
  <artifactId>SampleProject</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>SampleProject</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
            <groupId>org.seleniumhq.selenium</groupId>
            <artifactId>selenium-java</artifactId>
            <version>2.45.0</version>
        </dependency>

        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>6.9.6</version>
        </dependency>
        </dependencies>
        <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-surefire-plugin</artifactId>
          <version>2.18.1</version>

          <configuration>
          <suiteXmlFiles>
            <suiteXmlFile>testng.xml</suiteXmlFile>
          </suiteXmlFiles>
        </configuration>

        </plugin>
      </plugins>
    </pluginManagement>
  </build>
  <reporting>
              <plugins>
                     <!-- TestNG-xslt related configuration. -->
                     <plugin>
                           <groupId>org.reportyng</groupId>
                           <artifactId>reporty-ng</artifactId>
                           <version>1.2</version>
                           <configuration>
                                  <!-- Output directory for the testng xslt report -->
                                  <outputDir>/target/testng-xslt-report</outputDir>
                                  <sortTestCaseLinks>true</sortTestCaseLinks>
                                   <testDetailsFilter>FAIL,SKIP,PASS,CONF,BY_CLASS</testDetailsFilter>
                                  <showRuntimeTotals>true</showRuntimeTotals>
                           </configuration>
                     </plugin>
              </plugins>
       </reporting>


</project>

3 个答案:

答案 0 :(得分:0)

看起来他们已从reporty-ng删除了maven repository插件,因此您可能无法直接通过maven生成xslt报告。

如果您想生成XSLT报告,可以获取Ant XSLT

的帮助

答案 1 :(得分:0)

如果您因任何原因不喜欢默认报告,可以通过实施IReporter来编写自己的报告: http://testng.org/doc/documentation-main.html#logging

答案 2 :(得分:0)

我相信你在下面使用

<pluginRepositories>
              <pluginRepository>
                     <id>reporty-ng</id>
                     <url>https://github.com/cosminaru/reporty-      ng/raw/master/dist/maven</url>

网址无效。他们已将其从该网址中删除。但是,我认为您可以使用此网址https://github.com/prashanth-sams/testng-xslt-1.1.2/tree/master/src/main/java/org/testng/xslt/mavenplugin。我虽然没试过。

您可以从中下载。 https://drive.google.com/drive/folders/0B5v_nInLNoquV1p5YWtHc3lkUkU