Nashtrump1
Programmer
Hi There.
I am aware of how to submit a form using Perl by filling in the fields using Win32::IE::Mechanize module.
$ie->submit_form(
form_name => $form_name,
fields => {
username => 'yourname',
password => 'dummy',
},
button => $btn_name,
);
But i am trying to change data on a webpage and parse that data but the form is activated using an <OPTION> field.
Any idea how i do that?
Thanks
Nash
I am aware of how to submit a form using Perl by filling in the fields using Win32::IE::Mechanize module.
$ie->submit_form(
form_name => $form_name,
fields => {
username => 'yourname',
password => 'dummy',
},
button => $btn_name,
);
But i am trying to change data on a webpage and parse that data but the form is activated using an <OPTION> field.
Any idea how i do that?
Thanks
Nash