Help for this page

Select Code to Download


  1. or download this
        $data=$mech->submit_form(
            form_name => 'HashForm1',
    ...
                submit => 'Log On',
            }
        );
    
  2. or download this
        $mech->submit_form(
            form_name => 'HashForm1',
    ...
            },
            button => "submit",
        );
    
  3. or download this
    $mech->form_name('HashForm1');
    $mech->field("login_username",'username');
    $mech->field("login_password",'password');
    $mech->field("prefLanguage",00000000);
    $mech->submit_form();
    
  4. or download this
    $mech->proxy(['https'], 'http://localhost:8080');