Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Converting XML JUnit report to HTML [duplicate]

I have been generating junit xml report till now for my Protractor tests, but as tests are increasing I need to get a HTML report for the tests. Can we change the junit xml report to HTML using XSLT? If yes, can I have XSLT file for the same.

like image 675
mohit Avatar asked Mar 04 '14 06:03

mohit


1 Answers

The solution can be to convert JUnit XML files to HTML files using the XSLT . You can find the XSLT file in the answer of this question: What XSLT converts JUnit Xml format to JUnit Plain format

You can use XSLT to create custom manual reports as in Custom JUnit Report?

You can use Ant to create HTML reports as in how can i create a html report for the junit xml report manually?

like image 150
Manu Avatar answered Sep 30 '22 09:09

Manu