talexb has asked for the wisdom of the Perl Monks concerning the following question:
I am getting the warning
during some tests that I'm running, and I really can't figure out why. WWW::Mechanize calls HTML::Form, which is where this carp is coming from (starting at line 192):Bad <select> tag 'input' at /usr/share/perl5/WWW/Mechanize.pm line 169 +0
All that to say that 'input' appears to be a valid tag, so I'm not sure why I'm getting a warning.Carp::carp("Bad <select> tag '$tag'") if $^W; if ($tag eq "/form" || $tag eq "input" || ...
|
|---|