aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/system/shared/utils.py
diff options
context:
space:
mode:
authorRobert LΓΆhning <robert.loehning@qt.io>2023-11-30 20:05:28 +0100
committerRobert LΓΆhning <robert.loehning@qt.io>2024-01-15 11:16:15 +0000
commit2f53ab04f58558b503542169a933e66ea38631b9 (patch)
tree7b88eeb4c5074e7c613283a178a16e3294012190 /Tests/system/shared/utils.py
parent5f94ed984a75e74f5ec84eab7b6c478ff458a836 (diff)
Squish: Use objects recorded by Squish 7.2.1
They provide better readability and also look more stable. Squish 7.1.0 can use these new objects while Squish 7.2.1 cannot handle the old ones. Task-number: SQUISH-16829 Change-Id: I4214eee31699b7e90eff67d37119102c068e36ca Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io> Reviewed-by: Katarina Behrens <katarina.behrens@qt.io>
Diffstat (limited to 'Tests/system/shared/utils.py')
-rw-r--r--Tests/system/shared/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/system/shared/utils.py b/Tests/system/shared/utils.py
index cff02780..3068d6ae 100644
--- a/Tests/system/shared/utils.py
+++ b/Tests/system/shared/utils.py
@@ -47,7 +47,7 @@ def startAppGetVersion(waitForInitialDialogs=False):
def openVsToolsMenu(version):
while True:
mouseClick(waitForObject(globalnames.extensions_MenuItem))
- mouseClick(waitForObject(globalnames.pART_Popup_Qt_VS_Tools_MenuItem, 5000))
+ mouseClick(waitForObject(globalnames.extensions_Qt_VS_Tools_MenuItem, 5000))
if not object.exists(globalnames.Initializing_MenuItem):
break
mouseClick(waitForObject(globalnames.extensions_MenuItem)) # close menu
@@ -56,4 +56,4 @@ def openVsToolsMenu(version):
def closeMainWindow():
mouseClick(waitForObject(globalnames.file_MenuItem))
- mouseClick(waitForObject(globalnames.pART_Popup_Exit_MenuItem))
+ mouseClick(waitForObject(globalnames.file_Exit_MenuItem))