summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-05-26 12:44:34 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-17 21:10:39 +0200
commitdfe27484f43248a60b438c91b604f43986ebf6cc (patch)
treeaee95d11efb44e965f929379fb8b50fc46ff1e34
parenta4c8c2a5e8a035ee6234816d7f1f1db27d500c58 (diff)
uitest: make the calc keycode demo a bit easier to understandprivate/moggi/ui-test
Change-Id: Ia24747994dc45b8c6636aee37a55d2ba4672993a
-rw-r--r--uitest/calc_tests/gridwindow.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/uitest/calc_tests/gridwindow.py b/uitest/calc_tests/gridwindow.py
index ae16e40f3a2c..1f01ec9d8622 100644
--- a/uitest/calc_tests/gridwindow.py
+++ b/uitest/calc_tests/gridwindow.py
@@ -55,10 +55,11 @@ def special_keys(xContext):
selectProps = mkPropertyValues({"CELL": "C3"})
xGridWindow.executeAction("SELECT", selectProps)
- # TODO: how to handle the enter
typeProps = mkPropertyValues({"KEYCODE": "CTRL+DOWN"})
xGridWindow.executeAction("TYPE", typeProps)
+ time.sleep(2)
+
ui_test.close_doc()
# vim:set shiftwidth=4 softtabstop=4 expandtab: */