artyom has asked for the wisdom of the Perl Monks concerning the following question:

Hello all.

Please, tell me how to simulate a click on the link to the web site. Without www::mechinize::firefox.

Thanks.

Replies are listed 'Best First'.
Re: How to click on the link?
by Anonymous Monk on May 27, 2013 at 09:44 UTC

    Please, tell me how to simulate a click on the link to the web site. Without www::mechinize::firefox.

    sure, use WWW::Mechanize to speak some HTTP

Re: How to click on the link?
by hdb (Monsignor) on May 27, 2013 at 11:01 UTC
      Thanks, very interesting, but i use linux.
Re: How to click on the link?
by greengaroo (Hermit) on May 27, 2013 at 14:27 UTC

    As you did not stated your needs, this may be overkill, but I use LWP::UserAgent to do "browsing" from a perl script. It allows you to get a URL and read the content, then you can parse it and follow more links. Eventually, you would be able to write a spider bot.

    A for will get you from A to Z; a while will get you everywhere.