Free library like Java Robot class for C ++

Is there a free library that has the same features of the Java Robot class for C ++?

http://java.sun.com/javase/6/docs/api/java/awt/Robot.html

+2


source to share


2 answers


For Linux, there is Dogtail which uses the GNOME accessibility technology. I tried writing some tests for the GNOME calculator. You can use the standard Python unit test framework to write tests. Dogtail handles all communication with the user interface. All buttons and fields have their own names in GNOME and can be accessed from Python.



+2


source


For Windows, there are tools like AutoIt that can automate a GUI application. However, on Linux I don't know anything; expect is the gold standard for automating command line applications like telnet, but does not handle graphical interfaces.



0


source







All Articles