cajun has asked for the wisdom of the Perl Monks concerning the following question:
# get the first level of links my @links = $mech->find_all_images(url_regex => qr/jpg$/); # follow each link to the next link foreach (@links) { $mech->follow_link ( $_->url() )};
When I run this, I get the following error:
I've done a super search and I've not yet been able to find any clues yet. I haven't a clue what I'm doing wrong. Thanks for any pointers or links.Odd number of elements in hash assignment at /usr/lib/perl5/vendor_per +l/5.8.6/WWW/Mechanize.pm line 573.
Thanks,
Mike
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: WWW::Mechanize follow_link()
by johnnywang (Priest) on Sep 13, 2005 at 06:32 UTC | |
|
Re: WWW::Mechanize follow_link()
by friedo (Prior) on Sep 13, 2005 at 06:34 UTC | |
|
Re: WWW::Mechanize follow_link()
by cajun (Chaplain) on Sep 13, 2005 at 06:40 UTC |