summaryrefslogtreecommitdiff
path: root/uitest/calc_tests
diff options
context:
space:
mode:
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: */