Search code examples
testingautomationhealth-monitoringsmoke-testing

What's the simplest/easier way to do a health check/smoke test in an internal web app?


I have an intranet web application and I would like to do a simple health check/smoke that runs once an hour to make sure that everything is how it is supposed to be.

The tests are supposed to do some requests and check response for text and in some cases do one or two POSTs to see if the application in answering like it should.

I thought about using Selenium or Visual Studio's WebTest and schedule the run via CC.NET or another CI application but seems like a big shot for a simple thing.

Any ideas?

Thanks


Solution

  • Selenium is a good option. So is PhantomJS.