Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T08:51:49Z http://stackoverflow.com/feeds/question/79935 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/79935/is-there-an-equivalent-to-javas-robot-class-java-awt-robot-for-perl 1 Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl? whitney 2008-09-17T04:20:05Z 2009-10-03T18:16:25Z <p>Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl?</p> http://stackoverflow.com/questions/79935/is-there-an-equivalent-to-javas-robot-class-java-awt-robot-for-perl/79976#79976 1 Answer by bmdhacks for Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl? bmdhacks 2008-09-17T04:26:36Z 2009-10-03T18:15:59Z <p>There is on Linux/Unix:</p> <p><a href="http://sourceforge.net/projects/x11guitest" rel="nofollow">http://sourceforge.net/projects/x11guitest</a></p> <p>I'm not familiar of anything similar for Windows or Mac that uses Perl.</p> http://stackoverflow.com/questions/79935/is-there-an-equivalent-to-javas-robot-class-java-awt-robot-for-perl/80004#80004 3 Answer by Fhoxh for Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl? Fhoxh 2008-09-17T04:30:09Z 2008-09-17T04:30:09Z <p>If you're looking for a way to control a browser for the purpose of functional testing, Selenium has Perl bindings: <a href="http://selenium.openqa.org/" rel="nofollow">http://selenium.openqa.org/</a></p> http://stackoverflow.com/questions/79935/is-there-an-equivalent-to-javas-robot-class-java-awt-robot-for-perl/80399#80399 3 Answer by cjm for Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl? cjm 2008-09-17T05:56:06Z 2008-09-17T05:56:06Z <p>For X (Linux/Unix), there's <a href="http://search.cpan.org/perldoc?X11::GUITest" rel="nofollow">X11::GUITest</a>.</p> <p>For Windows, there's <a href="http://search.cpan.org/perldoc?Win32::CtrlGUI" rel="nofollow">Win32::CtrlGUI</a>, although it can be a bit tricky to install its prerequisites.</p> http://stackoverflow.com/questions/79935/is-there-an-equivalent-to-javas-robot-class-java-awt-robot-for-perl/83794#83794 2 Answer by Mr. Muskrat for Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl? Mr. Muskrat 2008-09-17T14:26:13Z 2008-09-17T14:26:13Z <p>On Windows, I've always used <a href="http://search.cpan.org/~karasik/Win32-GuiTest-1.54/lib/Win32/GuiTest.pm" rel="nofollow">Win32::GuiTest</a>.</p> http://stackoverflow.com/questions/79935/is-there-an-equivalent-to-javas-robot-class-java-awt-robot-for-perl/87112#87112 6 Answer by Bob Chatman for Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl? Bob Chatman 2008-09-17T20:11:51Z 2008-09-17T21:06:01Z <p>Alternatively, you can surely use the <a href="http://search.cpan.org/~petdance/WWW-Mechanize-1.34/lib/WWW/Mechanize.pm" rel="nofollow">WWW::Mechanize</a> module to create a agent as we do here at work. We have a tool called AppMon that is really just a dramatized wrapper around Mechanize. </p> <p>The Mechanize module allows you to use scripts that look a lot like this: </p> <pre><code>use WWW::Mechanize; my $Agent = WWW::Mechanize-&gt;new(cookie_jar =&gt; {}); $Agent-&gt;get("http://www.google.com/search?q=stack+overflow+mechanize"); print "Found Mechanize" $Agent-&gt;content =~ /WWW::Mechanize/; </code></pre> <p>and will result in "Found Mechanize" being output. This is a very simple script, but rest assured you can interact with forms quite well as well.</p> <p>You can also move to Ruby and use Watir, but Selenium is another alternative, albeit not as interesting (in terms of coding) or automate-able. Selenium has a firefox extension that is quite useful for creating the selenium scripts and can change them between the various languages that it supports, which is pretty extensive in terms of automation.</p>