I'm not exactly sure what you want either, but no module is needed for:

system ('start', 'C:\progra~1\intern~1\IEXPLORE.exe', 'http://yahoo.com');

opening the browser to a certain URL on your desktop.

Bill's way will download the HTML into a file which is certainly useful 
many times. I just did that myself as a matter of fact :) Thanks again Bill.

On the other hand if you're talking CGI, to forward the user to another 
url, simply print the Location header with the URL to the new location:

print "Location: http://yahoo.com/index.html\n\n";;

And you may be looking for OLE and a COM object. That I'm working on but 
don't know how to do yet.


ms




At 12:14 AM 9/5/02, you wrote:
>T&C Winquist wrote:
>>I searched CPAN for a module that would emulate clicking a link on a web
>>page.  Let's say I know that I want to click the link "<a
>>href=r/fo>Photos</a>" on yahoo's index page.  I would like a script that
>>would emulate that click and load the resulting page into the web browser
>>that calls the script.  It would load the actual page and not just a string
>>version of the page.  This may be a bad example, but for some of my web
>>automation applications, it is necessary.  Anyone ever seen such a module or
>>script??  Thanks in advance!
>
>Not sure I follow, but LWP::Simple should handle that - or a mod of the
>script we're playing with earlier.  Your description is a bit cryptic:
>where does the script get the URL from and is it running as a CGI and
>what does it do with the page - store it or return it to the browser, etc. ???
>
>--
>   ,-/-  __      _  _         $Bill Luebkert   ICQ=162126130
>  (_/   /  )    // //       DBE Collectibles   Mailto:[EMAIL PROTECTED]
>   / ) /--<  o // //      http://dbecoll.tripod.com/ (Free site for Perl)
>-/-' /___/_<_</_</_     Castle of Medieval Myth & Magic http://www.todbe.com/
>
>_______________________________________________
>Perl-Win32-Users mailing list
>[EMAIL PROTECTED]
>To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to