If you have Visual Studio installed, you can also use it to use XSLT.
In Visual Studio 2012:
- Verify that the XML file generated by WCAT (log.xml) and the XSLT file (report.xsl) are in the same directory.
- Open the XML file.
- In VS2012, click the XML menu> Launch XSLT Debugging (or run XSLT without debugging).
- Wait a few seconds for the result html file to be generated.
As an aside ...
Remember that there are some errors / typos in the .1sl1 file of the WCAT 6.3 file.
Report.xsl causes the following errors when converting with it:
- Variable 'i' not declared (row: 52, column: 13)
- The variable or parameter 'rowId' is either undefined or unavailable. (row: 1182, column: 37)
- Variable or par
You can fix it manually ( link ):
- Cut the code in lines 1151-1157 and paste it in line 1146.
- In line 51 add: var i = 0;
source share