in reply to Re^3: https javascript form
in thread https javascript form

see if this works:
use WWW::Mechanize; my $usr = "your_username"; my $pw = "your_password"; $mech->form_number(1); $mech->field( "ctl00$MainContent$Login1$UserName", $usr); $mech->form_number(2); $mech->field("ctl00$MainContent$Login1$Password", $pw); $mech->click(); $mech->dump_text; # for debugging

Replies are listed 'Best First'.
Re^5: https javascript form
by Anonymous Monk on Jun 13, 2013 at 13:49 UTC
    I have tried that but it doesn't work :-(

    Could it have something to do with the 'action' field? How do I set that in a form?