summaryrefslogtreecommitdiff
path: root/sw/qa/uitest
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2021-06-04 15:27:56 +0200
committerMike Kaganski <mike.kaganski@collabora.com>2021-06-04 16:34:57 +0200
commit01ff7460b83da265a0c68fa01cf2282f4e7dd72e (patch)
tree599c3b9774351fedf4e7ea9f63cd0f905a05abd3 /sw/qa/uitest
parent0d42ca4f39160bdc28a5855261c227c63161dd8a (diff)
Fix UITest
It needs to wait until vnd.sun.star.findbar:FocusToFindbar does its magic, which was racing with Python executing its typing. This adds "SelectedText" property to ComboBoxUIObject::get_state. Change-Id: I30faab2cc36a3cde59cf72ae5a383738a3ad4738 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116694 Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/qa/uitest')
-rw-r--r--sw/qa/uitest/findBar/tdf136941.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/sw/qa/uitest/findBar/tdf136941.py b/sw/qa/uitest/findBar/tdf136941.py
index ab94449aefed..c77a7e2a2277 100644
--- a/sw/qa/uitest/findBar/tdf136941.py
+++ b/sw/qa/uitest/findBar/tdf136941.py
@@ -40,6 +40,9 @@ class tdf136941(UITestCase):
self.xUITest.executeCommand("vnd.sun.star.findbar:FocusToFindbar")
xfind = xWriterDoc.getChild("find")
+ self.ui_test.wait_until_property_is_updated(xfind, 'SelectedText', "Hello")
+ self.assertEqual("Hello", get_state_as_dict(xfind)['SelectedText'])
+
xfind.executeAction("TYPE", mkPropertyValues({"TEXT": "World"}))
# Without the fix in place, this test would have failed with