Hi,
I used to be able to use LWP and HTTP::Form to grab a web form, fill it out and click on the submit button.
Now, the form has been changed:
When I run the perl code, I get
"No clickable input with name HitIt ..."
What do I need to do to be able to submit the data?
I used to be able to use LWP and HTTP::Form to grab a web form, fill it out and click on the submit button.
Code:
my $ua = LWP::UserAgent->new();
...
# set $form
...
$ua->request($form->click('HitIt'));
Now, the form has been changed:
Code:
<input type="button" value="Submit" onClick="submitCheck()" name="HitIt">
<!-- elsewhere in the web page -->
function submitCheck() {
...
}
When I run the perl code, I get
"No clickable input with name HitIt ..."
What do I need to do to be able to submit the data?