selenium测试报告
哪位大神 能给一个selenium-java—testNG测试报告脚本吗??谢谢!!! testng默认会带一个测试报告的,如果你想做到可定制的测试报告你可以用testng+ant来搞 同上,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>
受用了啊
页:
[1]