views:

31

answers:

1

ASP.Net MVC - How should i do integration testing on an ASP.net MVC application without necessarily running all the tests via the browser?

+2  A: 

You could use a Visual Studio Web Test to record and execute a scenario. Selenium is another alternative.

Darin Dimitrov