in reply to Re: WWW::Mechanize problem
in thread WWW::Mechanize problem
use strict; use warnings; print "What zip code? \n"; my $module_name = <STDIN> or die "Must specify module name on command line"; use WWW::Mechanize; my $browser = WWW::Mechanize->new(); $browser->get("http://www.unitrinspecialty.com/us/locator/"); $browser->form_number(1); $browser->field("zipCode", $module_name); $browser->click();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: WWW::Mechanize problem
by jasonk (Parson) on May 29, 2008 at 02:31 UTC | |
by SavagePerl (Novice) on May 29, 2008 at 03:36 UTC | |
by ikegami (Patriarch) on May 29, 2008 at 04:34 UTC | |
by ikegami (Patriarch) on May 29, 2008 at 05:30 UTC |