Win32-IE-Mechanize - Re: POST in IE::Mechanize, can it be done?

Posted on Fri Nov 11 15:57:22 2005 by abeltje in response to 1296 (See the whole thread of 2)
Re: POST in IE::Mechanize, can it be done?
If the form specifies METHOD=POST, the submit_form() method will send a post request. Something like this:
$ie->get( 'http://www.website.com/inventory' ); $ie->submit_form( form_number => 1, fields => { car => 'honda', model => 'accord', color => 'blue' }, );
Write a response