Help for this page

Select Code to Download


  1. or download this
    <input type=image src="/images/buttons/login.gif" alt="Login">
    
  2. or download this
      login=                         (text)
      pass=                          (password)
      secure_login=0                 (radio) [1/SSL |*0/Non-SSL]
      <NONAME>=<UNDEF>               (image)
    
  3. or download this
    # Fields to fill out, since there is only one button,
    # try to let Mech find it
    ...
    my $logout = $mech->find_link( text => "Logout" );
    
    die "Did not log in, stopped" unless $logout;
    
  4. or download this
    If there is only one button on the form, $mech->click() with no argume
    +nts simply clicks that one button.