in reply to Help: populate login password into a popup window of a website

My guess is that this is basic HTTP authentication. In that case, use the credentials() method on your WWW::Mechanize object to tell it what login and password to use.

my $mech = WWW::Mechanize->new(); $mech->credentials( 'login', 'password' ); # further $mech usage

Replies are listed 'Best First'.
Re^2: Help: populate login password into a popup window of a website
by neoanantha (Initiate) on May 30, 2008 at 17:23 UTC
    thanks for the lead kyle