ant+TestNG-xslt生成selenium测试报告

使用 selenium+testng 做自动化测试的时候,生成的测试报告比较难看,也不是很实用。怎样才能生成我们想要的报告呢。使用 TestNG-xslt 这个插件可以生成较理想的报告。

       我们现在使用 testng 跑完测试后,会在测试代码的根目录下生成一个文件夹 test-output ,里面有 testng 生成的测试报告,也就是我们要改进的测试报告。下图:

testng 生成的文件中有一个 testng-results.xml ,这里面有我们的测试结果信息。 TestNG-xslt 要做的工作就是把这个文件里面的信息重新表现。下面我们通过这个插件来重新生成我们的测试报告。

1.    下载 TestNG-xslt saxon-8.7.jar 复制到测试项目的 lib

2.    然后在测试项目的根目录下添加 build.xml

name= "myproject" basedir= "." >

    name= "lib.dir" value= "lib" />

    id= "test.classpath" >

        

        dir= "${lib.dir}" includes= "*.jar" />

   

    name= "transform" >

        in= "D:/tmsTest/SeleniumTest0809/test-output/testng-results.xml" style= "D:/tmsTest/SeleniumTest0809/test-output/testng-results.xsl"

  out= "D:/tmsTest/SeleniumTest0809/test-output/ index1.html " >

            

            name= "testNgXslt.outputDir" expression= "D:/tmsTest/SeleniumTest0809/test-output/" />

            refid= "test.classpath" />

       

   

3. 从你下载的包中拷贝文件 testng-results.xsl test-output 目录下。 testng-results.xsl 文件的位置是 testng-xslt-1.1.1/src/main/resources ,为什么要这个文件呢?因为我们的测试报告就是用这个 style 生成的。

4. ant 运行这个 xml 就会在 test-output 目录下生成 index1.html 打开它就能看到新生成的测试报告 , 通过生成的报告我们能看到总体的情况,比如通过了多少 case ,失败了多少,跳过了多少没执行。第二个好处是我们可以查看失败的 case 抛出的异常,有具 体的函数和行号。我们还可以通过 case 执行后的状态来过滤查询等等。下面给出一个小图:

 

 

你可能感兴趣的:(Selenium)