首页 > Web开发 > 详细

Selenium Webdriver——使用reportng

时间:2016-08-04 21:24:03      阅读:258      评论:0      收藏:0      [点我收藏+]

ReportNG is a simple HTML reporting plug-in for the TestNG unit-testing framework. It is intended as a replacement for the default TestNG HTML report. The default report is comprehensive but is not so easy to understand at-a-glance. ReportNG provides a simple, colour-coded view of the test results.

reportng 是一个简单的testng 的生成html格式报告插件,是为了取代testng 默认的 html report.tesng默认的report不容易理解,也不太美观。reportng提高简单的,多彩的测试结果的视图.


Java项目

下载reportng jar包

http://pan.baidu.com/s/1i3KdlQH

 

下载google guice

http://pan.baidu.com/s/1pJkFezT

 

配置reportng

勾选Disable default listeners

在Pre Define listener中添加:org.uncommons.reportng.HTMLReporter

技术分享

报告如下:

技术分享


Maven项目

在pom.xml中添加以下文件:

        <dependency>
            <groupId>org.uncommons</groupId>
            <artifactId>reportng</artifactId>
            <version>1.1.4</version>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.testng</groupId>
                    <artifactId>testng</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

        <dependency>
            <groupId>com.google.inject</groupId>
            <artifactId>guice</artifactId>
            <version>3.0</version>
            <scope>test</scope>
        </dependency>

 testng.xml中增加监听器

<listener class-name="org.uncommons.reportng.HTMLReporter" />

 

Selenium Webdriver——使用reportng

原文:http://www.cnblogs.com/hjhsysu/p/5738307.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!