http://www.perlmonks.org?node_id=969133


in reply to WWW::Mechanize help

so what's the problem, you already got a list of inputs, why do you need names? Just use the value method:

for $boxes (@find_text) { if (length($boxes->value) > 100) { print $boxes->value; } }
(not tested)