After I deploy a build to staging. I would like to have a system that smoke tests all our webpages looking for error http status codes (400,500).
What is the easiest, fastest way to get a system like this into place.
If I use selenium or WebAII it seems like I'd have to do alot of work generating basic unit tests.
Ideally Id like to be able to autogenerate a dead simple test for all my page, then over time build some more interactive UI tests.
I dont really want to roll my own solution using wget or something.
I'd appreciate some suggestions.
Thanks