Help for this page

Select Code to Download


  1. or download this
    my @find_text = $mech->find_all_inputs(
            type  => 'text'
    ...
    for $boxes (@find_text) {
      print $boxes->content;
    }
    
  2. or download this
    my @find_text = $mech->find_all_inputs(
            type  => 'text'
    ...
    for $boxes (@find_text) {
      print $boxes->gettext;
    }
    
  3. or download this
    my @find_text = $mech->find_all_inputs(
            type  => 'text'
    ...
    for $boxes (@find_text) {
      print $boxes->value;
    }