- or download this
my @find_text = $mech->find_all_inputs(
type => 'text'
...
for $boxes (@find_text) {
print $boxes->content;
}
- or download this
my @find_text = $mech->find_all_inputs(
type => 'text'
...
for $boxes (@find_text) {
print $boxes->gettext;
}
- or download this
my @find_text = $mech->find_all_inputs(
type => 'text'
...
for $boxes (@find_text) {
print $boxes->value;
}