In ASP.NET WebForms, I've used Selenium to record and run my web and UI tests in a number of projects.
I know we can unit test Controllers and Models in ASP.NET MVC very easily.
What about Views?
Would you also test Views? If not how to make sure the Views, which are rendered by Controller Actions, contain the expected logics and behaviour?
I'd guess the same Web Testing Tools used in WebForms, such as WatiN and Selenium, could also be used here, not sure?
If so, what would be the difference between WebTesting in WebForms and WebTesting in MVC?