Help for this page
my $reportLink = WWW::Mechanize::Link->new( { url => 'http://www.website.com/report/runreport/30', attr => ([ ... } ); $mech->put($reportLink);
my $reportLink = URI->new('http://www.website.com/report/runreport/30 +'); $reportLink->query_form([ 'fields[xxx.name]' => 'a name', ... ]); $mech->put($reportLink);