in reply to Problem submitting form with Mechanize

You don't seem to be submitting the form, try:

$agent->submit();

Replies are listed 'Best First'.
Re^2: Problem submitting form with Mechanize
by pat_mc (Pilgrim) on Jan 05, 2011 at 23:04 UTC
    Hm ... thanks, marto. The reason why I did not include a form submit was because of the line
    <form method="post" action="http://...">
    When I do include the submit, I receive the following error message:
    Can't call method "make_request" on an undefined value at C:/Perl/lib/ +WWW/Mechanize.pm line 1804.
    So where does that leave me now?