生成 HTML TestNG 报告
可能的重复:
生成 HTML TestNG 报告
您好, 我有两种方法:addUser() 和deleteuser()。现在我必须使用 TestNG 生成 HTML 报告。我正在使用 Selenium 来测试我们的网站。因此,在运行时它会生成自己的 html 文件。我想创建自己的。我的类结构如下所示:
public class test{
setup method
testcase method
stop method
}
现在我必须包含用于生成报告的代码。我对此没有任何想法。实际上我尝试使用 ITestListener 和 IReporter 但他们要求我覆盖generateMethod。但我不知道如何使用这些方法。谁能用示例代码指导我?
Possible Duplicate:
Generating HTML TestNG reports
Hi,
I have two methods: addUser() and deleteuser(). Now I have to generate a HTML report for that using TestNG. I am using Selenium to test our website. So while running it is generating it's own html file. I want to create my own. My class structure looks like this:
public class test{
setup method
testcase method
stop method
}
Now where I have to include code for generating reports. I didn't have any idea about this. Actually I tried to use ITestListener and IReporter but they ask me to override generateMethod. But I don't know how to use those methods. Can anyone guide me with sample code ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该文档解释了如何执行此操作,并附有示例:
http://testng.org/ doc/documentation-main.html#logging
The documentation explains how to do this, along with an example:
http://testng.org/doc/documentation-main.html#logging