Help for this page

Select Code to Download


  1. or download this
    # loop through the current page's links and use ->follow_link( text_re
    +gex => q/$_/i to find and follow the current link
    
  2. or download this
    for my $link ($mech->find_all_links) { # on this page
      $mech->get($link->url);
    ...
      }
      $mech->back;
    }