Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
my @find_text = $mech->find_all_inputs( type => 'text' ); for $boxes (@find_text) { print $boxes->content; }
my @find_text = $mech->find_all_inputs( type => 'text' ); for $boxes (@find_text) { print $boxes->gettext; }
none of these are working :/my @find_text = $mech->find_all_inputs( type => 'text' ); for $boxes (@find_text) { print $boxes->value; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: WWW::Mechanize problem
by Corion (Patriarch) on May 06, 2012 at 14:37 UTC | |
by Anonymous Monk on May 06, 2012 at 14:46 UTC | |
by Corion (Patriarch) on May 06, 2012 at 15:45 UTC | |
by Anonymous Monk on May 06, 2012 at 15:59 UTC | |
by Khen1950fx (Canon) on May 06, 2012 at 16:14 UTC | |
|
Re: WWW::Mechanize problem
by choroba (Cardinal) on May 06, 2012 at 16:18 UTC |