From fb4f66927da4ceb2ed93ff29b35cdfd390ead968 Mon Sep 17 00:00:00 2001
From: Christian Stenger <christian.stenger@qt.io>
Date: Fri, 13 Oct 2017 11:34:21 +0200
Subject: [PATCH] Squish: Adapt tst_HELP05 to changed template

Change-Id: I03973193b2a705af632fd8978b37873bde51006f
Reviewed-by: Robert Loehning <robert.loehning@qt.io>
---
 tests/system/suite_HELP/tst_HELP05/test.py | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/tests/system/suite_HELP/tst_HELP05/test.py b/tests/system/suite_HELP/tst_HELP05/test.py
index 1acfac0b542..2b84e6d7afc 100755
--- a/tests/system/suite_HELP/tst_HELP05/test.py
+++ b/tests/system/suite_HELP/tst_HELP05/test.py
@@ -37,10 +37,12 @@ def verifyInteractiveQMLHelp(lineText, helpText):
         type(editorArea, homeKey)
     else:
         type(editorArea, homeKey)
+    snooze(1)
     # call help
     type(editorArea, "<F1>")
-    test.verify(helpText in getHelpTitle(),
-                "Verifying if help is opened with documentation for '%s'." % helpText)
+    test.verify(waitFor('helpText in getHelpTitle()', 1000),
+                "Verifying if help is opened with documentation for '%s'.\nHelp title: %s"
+                % (helpText, getHelpTitle()))
 
 def main():
     startApplication("qtcreator" + SettingsPath)
@@ -52,10 +54,15 @@ def main():
     addHelpDocumentation(qchs)
     # create qt quick application
     createNewQtQuickApplication(tempDir(), "SampleApp")
+    editorArea = waitForObject(":Qt Creator_QmlJSEditor::QmlJSTextEditorWidget")
+    # add basic MouseArea item to check it afterwards
+    codelines = ['MouseArea {', 'anchors.fill: parent', 'onClicked: Qt.quit()']
+    if not addTestableCodeAfterLine(editorArea, 'title: qsTr("Hello World")', codelines):
+        saveAndExit()
+        return
+    invokeMenuItem("File", "Save All")
     # verify Rectangle help
     verifyInteractiveQMLHelp("Window {", "Window QML Type")
-    # go back to edit mode
-    switchViewTo(ViewConstants.EDIT)
     # verify MouseArea help
     verifyInteractiveQMLHelp("MouseArea {", "MouseArea QML Type")
     # exit
-- 
GitLab