way has asked for the wisdom of the Perl Monks concerning the following question:
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?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: is a WWW::Mechanize bug or my ignorance?
by ikegami (Patriarch) on Mar 19, 2009 at 21:51 UTC | |
by Anonymous Monk on Mar 20, 2009 at 01:02 UTC | |
by ikegami (Patriarch) on Mar 20, 2009 at 05:30 UTC | |
by Anonymous Monk on Mar 20, 2009 at 07:00 UTC | |
by ikegami (Patriarch) on Mar 20, 2009 at 13:21 UTC | |
| |
|
Re: is a WWW::Mechanize bug or my ignorance?
by Anonymous Monk on Mar 19, 2009 at 21:59 UTC | |
by way (Sexton) on Mar 19, 2009 at 22:05 UTC |