51Testing软件测试论坛

标题: selenium测试报告 [打印本页]

作者: 此岸花开    时间: 2015-8-5 16:45
标题: selenium测试报告
哪位大神   能给一个selenium-java—testNG  测试报告脚本吗??

谢谢!!!
作者: joykao    时间: 2015-8-5 17:00
testng默认会带一个测试报告的,如果你想做到可定制的测试报告你可以用testng+ant来搞
作者: 陶陶840105    时间: 2015-8-18 20:41
同上,testng的默认报告很丑,我是用maven+testng
配置maven的pom.xml
                  <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.5</version>
                <configuration>
                    <properties>
                        <property>
                            <name>usedefaultlisteners</name>
                            <value>false</value>
                        </property>
                        <property>
                            <name>listener</name>
                            <value>org.uncommons.reportng.HTMLReporter, org.uncommons.reportng.JUnitXMLReporter</value>
                        </property>
                    </properties>
                    <workingDirectory>target/</workingDirectory>
                </configuration>
            </plugin>

作者: zhouxiaoli1015    时间: 2015-8-24 08:48
受用了啊




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2