Arun Kumar
Arun Kumar

Reputation: 225

generate the report in selenium webdriver

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

Answers (1)

Petr Mensik
Petr Mensik

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

Related Questions