码迷,mamicode.com
首页 > Web开发 > 详细

Selenium Webdriver——使用reportng

时间:2016-08-04 21:24:51      阅读:179      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!