Help for this page

Select Code to Download


  1. or download this
    my @c_inputs = $mech->find_all_inputs();
    foreach my $str (@c_inputs){
            print STDERR Dumper($str);
    }
    print STDERR "That was for PAGE: ".$mech->uri."\n";
    
  2. or download this
    
    my @c_inputs = $mech->form_name('account')->find_all_inputs();
    foreach my $str (@c_inputs){
            print STDERR Dumper($str);
    }