ganeshabelavadi has asked for the wisdom of the Perl Monks concerning the following question:
I've the following code
#!/usr/bin/perl -w use Win32::CaptureIE; StartIE; Navigate('http://www.google.co.in/'); my $img = CaptureElement('tab_user_options'); $img->Write("ie-elem.png"); QuitIE;
I'm getting following error
Could any one please helpCan't locate loadable object for module Win32::Screenshot in @INC (@IN +C contains: C:/Perl/lib C:/Perl/site/lib .) at C:/Perl/site/lib/Win32 +/CaptureIE.pm line 62 Compilation failed in require at C:/Perl/site/lib/Win32/CaptureIE.pm l +ine 62. BEGIN failed--compilation aborted at C:/Perl/site/lib/Win32/CaptureIE. +pm line 62. Compilation failed in require at D:\Project\Automation\Mailing\ScreenS +hot3.pl line 2. BEGIN failed--compilation aborted at D:\Project\Automation\Mailing\Scr +eenShot3.pl line 2.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Win32::Screenshot in @INC
by moritz (Cardinal) on Jul 25, 2011 at 12:29 UTC | |
by ganeshabelavadi (Novice) on Jul 26, 2011 at 04:49 UTC | |
by marto (Cardinal) on Jul 26, 2011 at 08:35 UTC |