aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Löhning <robert.loehning@qt.io>2023-03-13 23:04:06 +0100
committerRobert Löhning <robert.loehning@qt.io>2023-03-20 16:09:56 +0000
commit0000da12cef08675fa7522e44af3f42de8d745cb (patch)
treec9dbde5a55d60d017034816e9d00b899ee3131c2
parentd08a7535c97668765be7bb602158587333017b7b (diff)
Squish: Stabilize typing to edit
When configuring Qt versions, the edit often does not get characters of a Qt version's path and then the function used to wait forever. When unconditionally waiting for a second before actually waiting for the content, that doesn't seem to happen. Change-Id: Ief4763adf01a850b9100ba65f6d0abcc76cc1d56 Reviewed-by: Miguel Costa <miguel.costa@qt.io>
-rw-r--r--Tests/system/suite_configuration/shared/scripts/config_utils.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/system/suite_configuration/shared/scripts/config_utils.py b/Tests/system/suite_configuration/shared/scripts/config_utils.py
index ca98f6ee..895c3831 100644
--- a/Tests/system/suite_configuration/shared/scripts/config_utils.py
+++ b/Tests/system/suite_configuration/shared/scripts/config_utils.py
@@ -30,6 +30,7 @@ def typeToEdit(editId, text):
edit = waitForObject(editId)
mouseClick(edit)
type(edit, text)
+ snooze(1)
waitFor("waitForObject(editId).text == text")