prabudass has asked for the wisdom of the Perl Monks concerning the following question:

For sendkeys development i am using "use Win32;" and "use Win32::GuiTest;" for windows operating system. But I need use that code to the linux environment. Is it possible to use that "use Win32;" and "use Win32::GuiTest;" in the linux operating system (or) any other replacement module available for linux. Kindly advise me.

Thanks
  • Comment on Replacement for "use Win32::GuiTest" Module

Replies are listed 'Best First'.
Re: Replacement for "use Win32::GuiTest" Module
by marto (Cardinal) on Oct 23, 2009 at 14:34 UTC

    The Win32:: modules are, perhaps unsurprisingly, for the Microsoft Windows platform. I don't think you'll have much luck using them on Linux. Perhaps X11::GUTTest will be of use to you.

    See Test-Driving X11 GUIs or search google for more examples.

    Update: s/environment/platform/

    Martin