in reply to Re^7: javascript login
in thread javascript login
my $mech = WWW::Mechanize->new(); $mech->agent_alias( 'Firefox' ); $userid = "usr"; $password = "password"; $mech->get( "https://login.binck.nl/klanten/Login.aspx?ReturnUrl=%2fkl +anten%2fdefault.aspx" ); $mech->submit_form( form_number => 2, fields => { userid => "$userid", password => "$password" }, button => "btnSignon" );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: javascript login
by aitap (Curate) on Aug 17, 2012 at 19:43 UTC | |
by Anonymous Monk on Aug 17, 2012 at 19:45 UTC | |
by robertw (Sexton) on Aug 18, 2012 at 23:35 UTC | |
by robertw (Sexton) on Aug 19, 2012 at 00:13 UTC | |
by Anonymous Monk on Aug 19, 2012 at 01:12 UTC | |
|