summaryrefslogtreecommitdiff
path: root/sc/qa
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2022-09-14 14:01:20 +0100
committerCaolán McNamara <caolanm@redhat.com>2022-09-14 20:34:01 +0200
commit434f6a1b5a5089ff276918f9756501c91e146759 (patch)
tree76322d0846adfac25511737bad614771727740c3 /sc/qa
parent572c2ee4c4f4b8e53f2fa4398a5600f1468f3a38 (diff)
try wait_until_property_is_updated in test_tdf134390
====================================================================== FAIL: test_tdf134390 (navigator.navigator) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/sc/qa/uitest/calc_tests8/navigator.py", line 143, in test_tdf134390 self.assertEqual(get_state_as_dict(xColumn)['Value'], '2') AssertionError: '1' != '2' - 1 + 2 Change-Id: I7c781191facd10abbb25f895cb0d2bacb72d92ab Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139933 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc/qa')
-rw-r--r--sc/qa/uitest/calc_tests8/navigator.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/sc/qa/uitest/calc_tests8/navigator.py b/sc/qa/uitest/calc_tests8/navigator.py
index 226e54749a02..574d73c72b41 100644
--- a/sc/qa/uitest/calc_tests8/navigator.py
+++ b/sc/qa/uitest/calc_tests8/navigator.py
@@ -140,7 +140,9 @@ class navigator(UITestCase):
# Use return to update the current cell
xColumn.executeAction("TYPE", mkPropertyValues({"KEYCODE":"RETURN"}))
+ self.ui_test.wait_until_property_is_updated(xColumn, "Value", "2")
self.assertEqual(get_state_as_dict(xColumn)['Value'], '2')
+ self.ui_test.wait_until_property_is_updated(xRow, "Value", "2")
self.assertEqual(get_state_as_dict(xRow)['Value'], '2')
self.assertEqual(get_state_as_dict(xGridWin)["CurrentRow"], "1")
@@ -169,4 +171,4 @@ class navigator(UITestCase):
self.xUITest.executeCommand(".uno:Sidebar")
-# vim: set shiftwidth=4 softtabstop=4 expandtab: \ No newline at end of file
+# vim: set shiftwidth=4 softtabstop=4 expandtab: