in reply to Re: starting to write automated tests
in thread starting to write automated tests

And Test::WWW::Mechanize combines them both, so you can do stuff like
$mech->get( $homepage ); $mech->content_contains( "Contact us" ); $mech->content_unlike( qr/Under construction/i );

xoxo,
Andy