1

I have a set of Selenium WebDriver tests written in C sharp in visual studio IDE.

Is there framework with web interface where I can run them?

This web interface should display list of all tests, ability to run one or all tests and display results of their running.

1

1 Answer 1

1

Depending on what testing framework you are using (MSTest, NUnit etc) I doubt there is a specific 'web interface' for it.

You'd, more than likely, need to get yourself into the continuous integration world, and grab yourself a CI solution.

TeamCity, Jenkins, CruiseControl.NET are all good free (some limitations on TeamCity's free license) CI software. It will be a learning curve, but will be able to give you a nice interface about what tests are running, when they fail, how long they take etc - all in a nice report.

It also, wouldn't be that hard to write something like this yourself. The reports that NUnit etc make are all well documented & standardised XML. Thus, it wouldn't take much to take the information you need and shove it into a nice report.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.