Reputation: 33
What I'm looking for is a way to show me code coverage from my Selenium tests. At this point in time, I'm not sure if this is possible since the tests just load up an instance of a browser.
From the research I have done, it seems like all the tools that can accomplish this do code coverage for JAVA exclusively, which doesn't help me out since my codebase is a mixture of C# and VB.
I looked at the paid version of NCover (the trial), but cannot get NCover to attach to anything. After doing more reading, from my understanding NCover is looking for a .net application, so it can't grab on to a web browser.
The reason I am interested in the code coverage is because I am building out Selenium tests for teams here and wanted to see a trend over time to see how things are improving.
If anyone can point me in the direction of something to help me out I would appreciate it!
Upvotes: 3
Views: 947
Reputation: 8183
I think you have found the answer, NCover can do this as it will attach itself to the IIS w3wp.
See the documentation here: Documentation
Upvotes: 1