in reply to how do I fill dynamic html forms with perl

As anonymous monk has already suggested WWW::Mechanize does not support support JavaScript. Consider using WWW::Mechanize::Firefox or Using WWW::Selenium To Test Or Automate An Ajax Website.

  • Comment on Re: how do I fill dynamic html forms with perl

Replies are listed 'Best First'.
Re^2: how do I fill dynamic html forms with perl
by vladi.t (Initiate) on Dec 21, 2010 at 10:59 UTC
    Thanks a lot I've managed to do that after reading the links you gave me. Finally I've captured the POST request and constructed the one I needed on the basis of the original. Thanks for the help again!