Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Hudson to show complete selenium report?

Our Hudson installation shows a very spartan version of the Selenium report:

Selenium Report Result
numTestPasses   2
numTestFailures 0

I've understood that it should be possible to view full reports via Hudson, and also track development of the tests. But how?

like image 708
tputkonen Avatar asked Jun 18 '10 09:06

tputkonen


1 Answers

We configured Hudson to run Selenium through an Ant task. Then we added a post-build action to "Publish JUnit test result report." With this setup we can see each failed test name along with how long each test took and the ability to drill down into all the tests to see specifics.

You may be able to just add that post build action to your project using the Selenium plugin.

like image 192
Matt N Avatar answered Nov 14 '22 23:11

Matt N