summaryrefslogtreecommitdiff
path: root/uitest/calc_tests
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-05-05 01:34:22 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-18 17:02:04 +0200
commit51b91575523fcac72e37fc615b7c136f2a360bf1 (patch)
tree966f16cd1bd018556fb7bed9fc190bd63ff5df8d /uitest/calc_tests
parent3c324ae604a90e22cae2189a8e7da0d275677206 (diff)
uitest: change the calc gridwin test to show problems with formula input
Change-Id: If2afb8cce99ba426d4f0ce3785a658ae41e0911a
Diffstat (limited to 'uitest/calc_tests')
-rw-r--r--uitest/calc_tests/gridwindow.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/uitest/calc_tests/gridwindow.py b/uitest/calc_tests/gridwindow.py
index 1bb0d382fc87..0b53088eeeb0 100644
--- a/uitest/calc_tests/gridwindow.py
+++ b/uitest/calc_tests/gridwindow.py
@@ -77,12 +77,11 @@ def input(xContext):
xGridWindow = xTopWindow.getChild("grid_window")
- time.sleep(2)
-
selectProps = mkPropertyValues({"CELL": "C3"})
xGridWindow.executeAction("SELECT", selectProps)
- typeProps = mkPropertyValues({"TEXT": "hello"})
+ # TODO: how to handle the enter
+ typeProps = mkPropertyValues({"TEXT": "=2"})
xGridWindow.executeAction("TYPE", typeProps)
# vim:set shiftwidth=4 softtabstop=4 expandtab: */