Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-06-30 11:45:58 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-06-30 11:45:58 (GMT)
commit49424409e40dec6eefb96d3c8afa39a3c3378b21 (patch)
tree1274cee9a29cb30b97f0e06d4d19559d5c8262a8
parentf47d08fd34cbcc22e7bd43ee41de97ad300aa4fe (diff)
Print the name of the activity we are launching
-rw-r--r--tests/shell.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/shell.py b/tests/shell.py
index f216356..3d2215b 100644
--- a/tests/shell.py
+++ b/tests/shell.py
@@ -16,6 +16,8 @@ table = shell.child(name="", roleName="table")
cells = table.findChildren(predicate.GenericPredicate(roleName="table cell"))
for row in [cells[i:i+5] for i in range(0, len(cells), 5)]:
+ print "Launching %s" % row[2].text
+
row[1].click()
activity = tree.root.child(name="sugar-activity", roleName="application")