in reply to Re: Win32::IE::Mechanize from unix????
in thread Win32::IE::Mechanize from unix????

Thanks for the reply. I ll check those things out.
The following is the code I am trying
use Win32::IE::Mechanize; use Time::HiRes; my $ie = Win32::IE::Mechanize->new( visible => 1 ); $url = 'http://www.yahoo.com/'; $ie->get( $url ); sleep(5); print $ie->content; $ie->close;
There is no error message as such. The output is the content of the standard "This Page cannot be Displayed" screen.