Useful scripts for Sikuli

Posted by Ivo Flipse on Super User See other posts from Super User or by Ivo Flipse
Published on 2010-02-01T21:39:41Z Indexed on 2010/06/16 7:23 UTC
Read the original article Hit count: 589

Filed under:
|
|

Thanks to Lifehacker I came across Sikuli which is described as:

Sikuli is a visual technology to search and automate graphical user interfaces (GUI) using images (screenshots). The first release of Sikuli contains Sikuli Script, a visual scripting API for Jython, and Sikuli IDE, an integrated development environment for writing visual scripts with screenshots easily. Sikuli Script automates anything you see on the screen without internal API's support. You can programmatically control a web page, a desktop application running on Windows/Linux/Mac OS X, or even an iphone application running in an emulator.

As this looks very promising, perhaps complementary to AutoHotKey I'm curious what scripts you guys will come up with. Especially since this program is portable and could solve "simple" Super User problems.

Example script from their documentation:

  • setThrowException(True)
  • setAutoWaitTimeout(10000)
  • switchApp("System Preferences.app")
  • click(alt text)
  • click(alt text)
  • click(alt text)
  • click(alt text)
  • wait(alt text)
  • type("192.168.0.1\t")
  • type("255.255.255.0\t")
  • type("192.168.0.254\t")
  • click(alt text)

© Super User or respective owner

Related posts about autohotkey

Related posts about scripting