in reply to Re^3: https javascript form
in thread https javascript form
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 |