diff --git a/tests/system/shared/utils.py b/tests/system/shared/utils.py index c67cbc57517..45d7a2631b0 100644 --- a/tests/system/shared/utils.py +++ b/tests/system/shared/utils.py @@ -650,11 +650,11 @@ def openVcsLog(): waitForObject("{text='Version Control' type='QLabel' unnamed='1' visible='1' " "window=':Qt Creator_Core::Internal::MainWindow'}", 2000) except: - invokeMenuItem("View", "Output Panes", "Version Control") + invokeMenuItem("View", "Output", "Version Control") def openGeneralMessages(): if not object.exists(":Qt Creator_Core::OutputWindow"): - invokeMenuItem("View", "Output Panes", "General Messages") + invokeMenuItem("View", "Output", "General Messages") # function that retrieves a specific child object by its class # this is sometimes the best way to avoid using waitForObject() on objects that diff --git a/tests/system/suite_QMLS/tst_QMLS02/test.py b/tests/system/suite_QMLS/tst_QMLS02/test.py index a89be4d0327..5807691d31e 100644 --- a/tests/system/suite_QMLS/tst_QMLS02/test.py +++ b/tests/system/suite_QMLS/tst_QMLS02/test.py @@ -41,7 +41,7 @@ def main(): type(editorArea, "") type(editorArea, testingCodeLine) - invokeMenuItem("View", "Output Panes", "Issues") + invokeMenuItem("View", "Output", "Issues") issuesView = waitForObject(":Qt Creator.Issues_QListView") clickButton(waitForObject(":*Qt Creator.Clear_QToolButton")) 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 206e3f8a25b..82c6510974a 100644 --- a/tests/system/suite_debugger/tst_qml_js_console/test.py +++ b/tests/system/suite_debugger/tst_qml_js_console/test.py @@ -149,7 +149,7 @@ def main(): mainRect = getQModelIndexStr("text='Rectangle'", rootIndex) doubleClick(waitForObject(mainRect)) if not object.exists(":DebugModeWidget_Debugger::Internal::ConsoleView"): - invokeMenuItem("View", "Output Panes", "QML Debugger Console") + invokeMenuItem("View", "Output", "QML Debugger Console") # Window might be too small to show Locals, so close what we don't need for view in ("Stack", "Breakpoints", "Expressions"): invokeMenuItem("View", "Views", view)