in reply to small small script using WWW::Mechanize

You almost had it:
#!/usr/bin/perl -l use strict; use warnings; use WWW::Mechanize; my $url = 'https://www.google.de/'; my $agent = WWW::Mechanize->new; my $response = $agent->get($url); my $link = $agent->find_link( text => 'Bilder' ); print "The Google Bilder search URL is: ", Dumper ( $link->url );

Replies are listed 'Best First'.
Re^2: small small script using WWW::Mechanize
by madM (Beadle) on Sep 18, 2013 at 01:35 UTC
    thanks a lot! :)