in reply to Re: Re: Load URL in Web Browser Using Perl Script
in thread Load URL in Web Browser Using Perl Script

What are you trying to accomplish? Web scrapes?

If you are trying to scrape results from a web query look at LWP::UserAgent.


Peter @ Berghold . Net

Sieze the cow! Bite the day!

Test the code? We don't need to test no stinkin' code! All code posted here is as is where is unless otherwise stated.

Brewer of Belgian style Ales

  • Comment on Re: Re: Re: Load URL in Web Browser Using Perl Script

Replies are listed 'Best First'.
Re: Re: Re: Re: Load URL in Web Browser Using Perl Script
by Anonymous Monk on Jul 31, 2003 at 19:16 UTC
    Hi , I want to retrieve the url from the browser and pass it to the perl script . Eg: If I have a web page like yahoo.com opened in the web browser then I need to retrieve the url from the browser and pass it to perl script . if the web page is like rediff.com then it should pass the web page url from the browser to the perl script . Is it possible .

      Please re-read my previous post. LWP::UserAgent is your friend. Learn it, live it, use it.


      Peter @ Berghold . Net

      Sieze the cow! Bite the day!

      Test the code? We don't need to test no stinkin' code! All code posted here is as is where is unless otherwise stated.

      Brewer of Belgian style Ales

Re: Re: Re: Re: Load URL in Web Browser Using Perl Script
by Anonymous Monk on Aug 02, 2003 at 06:33 UTC
    Hi , What I want to do is fetch the url from the web browser and then retrieve the text under the cursor position for that web page which is opened in the browser. Can it be done using perl script???