aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2024-05-07 10:14:14 +0200
committerChristian Stenger <christian.stenger@qt.io>2024-05-13 04:56:07 +0000
commit6c9cea2f82d59b84512255b8b6dfa94b3242e149 (patch)
tree55e99154dca18cbb18abc4ae029347f75c437204
parent76f2b6d5e1ec563d144087d0c3eed777876da900 (diff)
SquishTests: Adapt combo box values
Change-Id: I4ca2cf10ff1fe1c6fde2835f04d954527232b658 Reviewed-by: Robert Löhning <robert.loehning@qt.io>
-rw-r--r--tests/system/shared/debugger.py2
-rw-r--r--tests/system/suite_debugger/tst_qml_js_console/test.py2
-rw-r--r--tests/system/suite_debugger/tst_qml_locals/test.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/system/shared/debugger.py b/tests/system/shared/debugger.py
index 5ee31dec20..17f357881b 100644
--- a/tests/system/shared/debugger.py
+++ b/tests/system/shared/debugger.py
@@ -126,7 +126,7 @@ def doSimpleDebugging(currentKit, currentConfigName, expectedBPOrder=[], enableQ
expectedLabelTexts.append("Running\.")
switchViewTo(ViewConstants.PROJECTS)
switchToBuildOrRunSettingsFor(currentKit, ProjectSettings.RUN)
- selectFromCombo(":EnableQMLDebugger_ComboBox", "Enabled" if enableQml else "Disabled")
+ selectFromCombo(":EnableQMLDebugger_ComboBox", "Enable" if enableQml else "Disable")
switchViewTo(ViewConstants.EDIT)
if not __startDebugger__(currentKit, currentConfigName):
return False
diff --git a/tests/system/suite_debugger/tst_qml_js_console/test.py b/tests/system/suite_debugger/tst_qml_js_console/test.py
index 4760296cf6..a64a24ad77 100644
--- a/tests/system/suite_debugger/tst_qml_js_console/test.py
+++ b/tests/system/suite_debugger/tst_qml_js_console/test.py
@@ -114,7 +114,7 @@ def main():
# make sure QML Debugging is enabled
switchViewTo(ViewConstants.PROJECTS)
switchToBuildOrRunSettingsFor(Targets.getDefaultKit(), ProjectSettings.RUN)
- selectFromCombo(":EnableQMLDebugger_ComboBox", "Enabled")
+ selectFromCombo(":EnableQMLDebugger_ComboBox", "Enable")
switchViewTo(ViewConstants.EDIT)
# start debugging
clickButton(fancyDebugButton)
diff --git a/tests/system/suite_debugger/tst_qml_locals/test.py b/tests/system/suite_debugger/tst_qml_locals/test.py
index 37ecb515cc..80c04167e1 100644
--- a/tests/system/suite_debugger/tst_qml_locals/test.py
+++ b/tests/system/suite_debugger/tst_qml_locals/test.py
@@ -35,7 +35,7 @@ def main():
return
switchViewTo(ViewConstants.PROJECTS)
switchToBuildOrRunSettingsFor(Targets.getDefaultKit(), ProjectSettings.RUN)
- selectFromCombo(":EnableQMLDebugger_ComboBox", "Enabled")
+ selectFromCombo(":EnableQMLDebugger_ComboBox", "Enable")
switchViewTo(ViewConstants.EDIT)
clickButton(fancyDebugButton)
locAndExprTV = waitForObject(":Locals and Expressions_Debugger::Internal::WatchTreeView")