I want to fill in a web form with Perl. I am having trouble finding out the correct syntax to accomplish this. As in, how do I go to the URL, select the form, fill in the form, and then press enter to be sure it has been submitted? Any examples would be great. Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Something like WWW::Mechanize::FormFiller? |
||||
|
|
|
WWW::Mechanize and its friends are the way to go. There are several examples in Spidering Hacks, but you'll also find plenty more by googling for the module name. Good luck, :) |
|||
|
|
|
Start with WWW::Mechanize::Shell:
Afterwards, type "script", and save generated code as something.pl - and that's about it. It's done. |
|||
|
|
|
Request the form's action URL with |
|||
|
|
|
HTML::Form works nicely, too. The synopsis of the module is an excellent example:
|
|||
|
|