Comment Re:Web Site Test Tools (Score 1) 250
I've recently been starting to use HTTP::WebTest to automate testing of a database driven, templated web site. There is a lot of functionality already, and it's designed so that you can write your own plugin tests and reporting modules.
One of the problems I'm working on is some way so that the team can write modular test plans that can be strung together in different combinations. This way you don't have to be a coder to design the tests.
Checking javascript remains a bit of an issue, but there is a Javascript.pm module which allows you to call a javascript engine from perl code. It doesn't handle all the document object model parsing that you probably want done, so there's plenty of room for contributing ...
One of the problems I'm working on is some way so that the team can write modular test plans that can be strung together in different combinations. This way you don't have to be a coder to design the tests.
Checking javascript remains a bit of an issue, but there is a Javascript.pm module which allows you to call a javascript engine from perl code. It doesn't handle all the document object model parsing that you probably want done, so there's plenty of room for contributing