Hello Monks!
I'm playing with WWW::Mechanize and when I send a form "clicking" an image button, mechanize don't send the value of it. Let me explain with an example:
if I have this index1.html page:
<form action="http://localhost/example.pl">
<input type=image src=send.gif name=some value=thisvalue>
</form>
use WWW::Mechanize;
my $mech = WWW::Mechanize->new;
$mech->get('http://localhost/index1.html');
$mech->click_button(name => 'some'); # it not send the value -> "thisv
+alue"!
In fact the error is on HTML::Form so, if it's an error where i reporte that, on WWW::Mechanize or on HTML::Form?