Reputation: 225
how can I generate the report after executing test cases in the selenium web driver. I am trying Test NG for generating report but I have to write different code to get the report?
Upvotes: 0
Views: 3593
Reputation: 27536
If you use Maven with Surefire plugin (which I strongly recommend), report is always located in target/surefire-reports/index.html
. If that is not enough for your than you can use ReportNG library which is supposed to have more convenient reports in HTML format.
Upvotes: 1