如何生成 PDF 格式的 TestNG 报告?
我只是查看来自我的测试框架的 TestNG 报告,它们都是 HTML 或 XML。有人知道如何生成PDF报告吗? (我正在使用 Maven 项目)。
从文档中,我需要实现 org.testng.IReporter,但是有人对此有任何了解吗?
干杯,
I was just looking at the TestNG reports coming from my test framework and they are all HTML or XML. Anyone know how to generate PDF reports? (I'm using a Maven project).
From the documentation, I need to implement org.testng.IReporter, but has anyone got any knowledge on that?
Cheers,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
有关 testng-users 邮件列表的此讨论包含一个附件这是生成 PDF 报告的记者的来源。
This discussion on the testng-users mailing-list contains an attachment which is the source of a reporter that generates PDF reports.
我也遇到了和你一样的麻烦。
但现在我可以截屏并生成 pdf。
我用过: http://code.google.com/p/selenium-java-evidence< /a>
示例代码如下:
测试类:
}
testng.xml
监听类
I was having the same trouble as yours.
But now I am able to take screen shots and generate pdfs.
I used: http://code.google.com/p/selenium-java-evidence
The sample code is like this:
Test Class:
}
testng.xml
Listener class
我发现了下面的 Github 插件,它使用简单而且非常好。希望有帮助!
https://github.com/uttesh/pdfngreport
I came across the below plugin Github which is simple to use and pretty good. Hope it helps!
https://github.com/uttesh/pdfngreport