I'm trying to search yellowpages.com via the Perl module WWW::Mechanize.
$mech->get( "http://www.yellowpages.com" );
$mech->form_name( "standard-searchform" );
$mech->field( "search-terms, "schneider" );
$mech->field( "search-location", "CA" );
$mech->submit();
I also tried $mech->submit_form( ... ) with the button value/type, but I get the following message all the time:
Error POSTing http://www.yellowpages.com/real_deals: Internal Server Error at /usr/lib/cgi-bin/index.pl line 39
Line 39 is
$mech->submit();
Is yp.com forwarding Mechanize to that site? How can I avoid that?