diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-05-20 05:12:33 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-18 17:02:27 +0200 |
commit | c1191005c01ae5f512d7841736dd6eb6f0dc8049 (patch) | |
tree | f06364eb51369c3e41342224c2d3d1c58e7a7741 /uitest/calc_tests | |
parent | 7ffaaf37c1e052339c1148283a773ce7e520739f (diff) |
uitest: use the new cell content enter function
Change-Id: I75ff56a903226797284dff7f556bd425d40b4fd4
Diffstat (limited to 'uitest/calc_tests')
-rw-r--r-- | uitest/calc_tests/gridwindow.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/uitest/calc_tests/gridwindow.py b/uitest/calc_tests/gridwindow.py index b67275a231e3..ae16e40f3a2c 100644 --- a/uitest/calc_tests/gridwindow.py +++ b/uitest/calc_tests/gridwindow.py @@ -9,6 +9,8 @@ from uitest_helper import UITest from helper import mkPropertyValues +from uihelper.calc import enter_text_to_cell + import time try: @@ -32,6 +34,11 @@ def input(xContext): xGridWindow = xTopWindow.getChild("grid_window") + enter_text_to_cell(xGridWindow, "C3", "=A1") + enter_text_to_cell(xGridWindow, "A1", "2") + + time.sleep(2) + ui_test.close_doc() def special_keys(xContext): |