Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl? - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T08:51:49Zhttp://stackoverflow.com/feeds/question/79935http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/79935/is-there-an-equivalent-to-javas-robot-class-java-awt-robot-for-perl1Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl?whitney2008-09-17T04:20:05Z2009-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#799761Answer by bmdhacks for Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl?bmdhacks2008-09-17T04:26:36Z2009-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#800043Answer by Fhoxh for Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl?Fhoxh2008-09-17T04:30:09Z2008-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#803993Answer by cjm for Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl?cjm2008-09-17T05:56:06Z2008-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#837942Answer by Mr. Muskrat for Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl?Mr. Muskrat2008-09-17T14:26:13Z2008-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#871126Answer by Bob Chatman for Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl?Bob Chatman2008-09-17T20:11:51Z2008-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->new(cookie_jar => {});
$Agent->get("http://www.google.com/search?q=stack+overflow+mechanize");
print "Found Mechanize" $Agent->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>