in reply to Re^2: Win32::IE::Mechanize trouble
in thread Win32::IE::Mechanize trouble

defined

Replies are listed 'Best First'.
Re^4: Win32::IE::Mechanize trouble
by xgamma (Novice) on Jun 19, 2008 at 19:54 UTC
    So I added this line:

    print "works" if defined $ie->form_name( $formName );
    Since nothing gets printed, this means that my form isn't getting set correctly, right?
      Yes, according to the docs. What if you try enumerating the forms using $ie->forms? Do you see the one in which you are interested?
        print $ie->forms

        returns nothing...