MIT creates picture-driven programming for the masses
- 22 January, 2010 08:09
- Comments
Computer users with rudimentary skills will be able to program via screen shots rather than lines of code with a new graphical scripting language called Sikuli that was devised at the Massachusetts Institute of Technology.
With a basic understanding of Python, people can write programs that incorporate screen shots of graphical user interface (GUI) elements to automate computer work.
Last of Python 2.x language line moves forward
One example given by the authors of a paper about Sikuli is a script that notifies a person when his bus is rounding the corner so he can leave in time to catch it.
The script would pull together visual elements of a GPS-driven bus-tracking application that a transit authority might make available online. First, the user would box and capture a map image of the corner that the bus will turn to trigger the notification. That image is pasted into a line of code in Sikuli Script Editor that would look like this:1: street_corner=find( ).
The image of the street corner to be found would be pasted inside the set of parentheses.
Then the script would command looking for the pointer that indicates a bus's location. That line of code would look like this:2: while not street_corner.inside().find( ).similar(0.7):
A captured image of the pointer icon would be pasted in the second set of parentheses. The script seeks out the image of the bus pointer as pasted, and the pointer image that was boxed and cut necessarily includes some background. But as the pointer moves around the map, the background changes, so there will be no exact match for the image as pasted. To account for the differences the "similar.(0.7)" command indicates that the script should find images that are 70 per cent similar to the icon pasted in the line of code.
The script tries to find the bus icon within the target area every 60 seconds, and that is written "sleep(60)". When the bus icon enters the target area, it triggers this response, scripted as: "popup("The bus is arriving!")".
Sikuli -- which means God's eye in the language of the Huichol Indians in Mexico -- also has a search function. Users paste in an icon from a program they are working with and the search engine will find sites that tell more about its function.
Specifying the visual search is actually faster than specifying a search based on keywords, say the researchers, Tom Yeh, Tsung-Hsiang Chang and Robert C. Miller.
In an upcoming paper, the researchers describe a way that programmers could use Sikuli to accelerate quality assurance testing for applications they are writing. They would write scripts to check whether applications in development continue to function as they should after each set of revisions.
Rather than having humans click on the applications' GUIs to see if they give the expected response, testers could script the clicking of the buttons and what visual feedback to expect if the button works properly. The script would flag those interactions that fail to provide the expected feedback.
Join the CIO Australia group on LinkedIn. The group is open to CIOs, IT Directors, COOs, CTOs and senior IT managers.
- Bookmark this page
- Share this article
- Got more on this story? Email CIO
- Follow CIO on twitter
-
Monday Grok: Will Siri crack the walls of GOOG?
-
Face Time - Interview with John Brennan and Robert DiStefano
-
Face Time - Interview with John Brennan and Robert DiStefano
-
Phones are distractions during catch-ups
-
Google's Sidewiki lets people post comments about Web pages
-
Transforming Your Business by Transforming Your Processes
In this white paper, we build on the “Intelligent Guide to Enterprise BPM: V olume One” in which we described the three entry points where you can begin to build true Enterprise BPM. In this white paper we explain the value of Process T ransformation, the entry point to strategy and design. Successful implementation of Process T ransformation will mean you have successfully documented, standardized, harmonized, managed—as well as analyzed and improved—your business processes. T he next two white papers will detail the other two entry points: Process Automation and Process Intelligence. -
Optimised License Management for the Datacenter
Optimised license management is a necessity for all licenses owned by the enterprise. While organisations are starting to understand their license position for the desktop estate, the reality is that licensing in the datacenter presents a daunting set of challenges that require a robust, automated license management solution. Learn about how to address the unique license management requirements of all enterprise IT environments including the desktop and the datacenter. -
Process-Driven Master Data Management for Dummies
We wrote this book to introduce you to the subject of processdriven MDM. It’s a big topic, one that far outstrips the ability of a brief book to cover. However, our hope is that by reading this book you will gain a fundamental understanding of processdriven MDM, how it works, and what it takes to make it a success in your organisation.
-
MYOB Software for Dummies 6E Australian Edition
-
Excel 2007 All-In-One Desk Reference for Dummies
-
Windows 7 for Dummies® Dvd+book Bundle
-
Microsoft Office
-
Teach Yourself Visually Windows 7
-
Computers for Seniors for Dummies, 2nd Edition
-
Office 2007 for Dummies
-
Windows 7 for Dummies®
-
Office 2007 All-In-One Desk Reference for Dummies








Comments
Post new comment