in reply to Re^2: LWP::UserAgent vs WWW::Mechanize
in thread LWP::UserAgent vs WWW::Mechanize

WWW::Mechanize's version of ->request modifies the request before issuing it, and that could be the problem. Try this:
$agent = WWW::Mechanize->new(...); ...set up $agent... $agent->LWP::UserAgent::request($form->click);