Tools
android.txt
Associated article: Android: Open-Source Scripting for Testing and Automation
Tags: Tools
Published source code accompanying the article by Larry Smith and Cameron Laird in which they discuss Android, a tool for recording and playing back scripts of events. In other words, it is a personal assistant that's smart enough to "do what you mean" when drudge work is waiting.
Android: Open-source Scripting For Testing and Automation
by Larry Smith and Cameron Laird
Example 1:
(a)
set CloseBtn @302,404
(b)
send_xevents $CloseBtn click 1
(c)
proc CloseBtn {} {
send_xevents @302,404 click 1
}
CloseBtn
Example 2:
(a)
send_xevents @100,100 click 1
(b)
send_xevents @100,100
send_xevents click 1
...


