summaryrefslogtreecommitdiff
path: root/uitest/calc_tests
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-05-05 01:06:40 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-18 17:02:01 +0200
commitc4afc494084c967549fa077d44cefcaa80c45f2d (patch)
tree51281a2ac143d3aa9681e881ab92013c33225846 /uitest/calc_tests
parent7edc59d748dcc2b572f11e9c067e44b2886affb3 (diff)
uitest: remove useless sleeps
Change-Id: Ia04478ea5b8e644cbe691578284b031d73cb9ad1
Diffstat (limited to 'uitest/calc_tests')
-rw-r--r--uitest/calc_tests/gridwindow.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/uitest/calc_tests/gridwindow.py b/uitest/calc_tests/gridwindow.py
index 4cf27a42760e..b87aac816e1d 100644
--- a/uitest/calc_tests/gridwindow.py
+++ b/uitest/calc_tests/gridwindow.py
@@ -35,8 +35,6 @@ def select_cell(xContext):
selectProps = mkPropertyValues({"CELL": "B10"})
xGridWindow.executeAction("SELECT", selectProps)
- time.sleep(20)
-
def select_range(xContext):
xUITest = xContext.ServiceManager.createInstanceWithContext(
"org.libreoffice.uitest.UITest", xContext)
@@ -51,8 +49,6 @@ def select_range(xContext):
selectProps = mkPropertyValues({"RANGE": "B10:C20"})
xGridWindow.executeAction("SELECT", selectProps)
- time.sleep(20)
-
def extend_range(xContext):
xUITest = xContext.ServiceManager.createInstanceWithContext(
"org.libreoffice.uitest.UITest", xContext)
@@ -67,11 +63,7 @@ def extend_range(xContext):
selectProps = mkPropertyValues({"RANGE": "B10:C20"})
xGridWindow.executeAction("SELECT", selectProps)
- time.sleep(5)
-
select2Props = mkPropertyValues({"RANGE": "D3:F5", "EXTEND": "true"})
xGridWindow.executeAction("SELECT", select2Props)
- time.sleep(5)
-
# vim:set shiftwidth=4 softtabstop=4 expandtab: */