in reply to Re^10: Gui Automation using guitest
in thread Gui Automation using guitest

No actually i didnt get an error message. The program was not executing only.. Actually i was doing this in a vm. I tried it in my host machine and it worked. Then on checking i realized i didnt have a module installed in the vm. I understood my problem and have already started working on it.. Thank you for ur help.

Replies are listed 'Best First'.
Re^12: Gui Automation using guitest
by marto (Cardinal) on Feb 10, 2011 at 11:59 UTC

    This makes no sense. If you run code in which you use a nonexistent module, for example use This::Does::Not::Exist, you'll get an error message if you've not got it installed:

    #!/usr/bin/perl use strict; use warnings; use This::Does::Not::Exist;

    Outputs:

    Can't locate This/Does/Not/Exist.pm in @INC (@INC contains: C:/strawbe +rry/perl/site/lib C:/strawberry/perl/vendor/lib C:/strawberry/perl/li +b .) at fail.pl line5. BEGIN failed--compilation aborted at fail.pl line 5.

    Clearly you would have had an error message on your VM where Win32::GuiTest was not installed.

    Update: fixed typo.