Help for this page

Select Code to Download


  1. or download this
    $mech = new WWW::Mechanize;
    $mech->get("http://domain.com/page");
    print $mech->base;
    
  2. or download this
    for ($mech->links) {
       print $_->url_abs, "\n";
    }