diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-11-25 14:36:48 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2021-11-25 16:46:00 +0100 |
commit | 89f64b9f0dcdc27fdc6827b5aca42af1b38ede25 (patch) | |
tree | fe2776c0e3c63ed3fb7b16dde730f86f5655005e | |
parent | 3057538549fb30a0f5312653a97216ba93f126a2 (diff) |
uitest: blind fix for UITest_writer_tests7 failed
Traceback (most recent call last):
File "/home/tdf/lode/jenkins/workspace/lo_gerrit/Config/linux_clang_dbgutil_64/sw/qa/uitest/writer_tests7/forms.py", line 76, in test_tdf140239
self.assertEqual("true", get_state_as_dict(xURL)['Enabled'])
AssertionError: 'true' != 'false'
- true
+ false
Change-Id: I535f1dd5d755b5896faa55651f5a1ff6c58cec4b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125814
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
-rw-r--r-- | sw/qa/uitest/writer_tests7/forms.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sw/qa/uitest/writer_tests7/forms.py b/sw/qa/uitest/writer_tests7/forms.py index f8a9ee9db124..1b427b4ebfb0 100644 --- a/sw/qa/uitest/writer_tests7/forms.py +++ b/sw/qa/uitest/writer_tests7/forms.py @@ -73,6 +73,8 @@ class Forms(UITestCase): select_by_text(xAction, "Open document/web page") self.assertEqual("Open document/web page", get_state_as_dict(xAction)['SelectEntryText']) + + self.ui_test.wait_until_property_is_updated(xURL, "Enabled", "true") self.assertEqual("true", get_state_as_dict(xURL)['Enabled']) xURL.executeAction("TYPE", mkPropertyValues({"TEXT": "1"})) |