tags:

views:

42

answers:

1

Hi All,

I am testing the web application using Selenium RC. All things works fine and I have written many test cases and executing these test cases using Nunit.

Now the hurdle that i am facing is how to keep track of failures or how to generate the Reports ?

Please advice which could be best way to capture this.

Thanks in Advance

+2  A: 

Because you're using NUnit you'll want to use NUnits reporting facilities. If the GUI runner is enough, that's great. But if you're running from the command line, or NAnt, you'll want to use the XML output take a look at the NAnt documentation for more information.

If you're using Nant you'll want to look at NUnit2Report. It's nolonger maintained, but it may suit your needs. Alternatively, you could extract it's XSLT files and apply it against the XML output.

Selenium itself doesn't have report because it is only a library used by many different languages.

pnewhook