source("../shared/qmls.py") def main(): editorArea = startQtCreatorWithNewAppAtQMLEditor(tempDir(), "SampleApp", "}") if not editorArea: return type(editorArea, "") testingItemText = "Item { x: 10; y: 20; width: 10 }" type(editorArea, testingItemText) for i in range(30): type(editorArea, "") invokeMenuItem("File", "Save All") # invoke Refactoring - Wrap Component in Loader numLinesExpected = len(str(editorArea.plainText).splitlines()) + 10 ctxtMenu = openContextMenuOnTextCursorPosition(editorArea) activateItem(waitForObjectItem(objectMap.realName(ctxtMenu), "Refactoring")) activateItem(waitForObjectItem(objectMap.realName(ctxtMenu), "Wrap Component in Loader")) # wait until refactoring ended waitFor("len(str(editorArea.plainText).splitlines()) >= numLinesExpected", 5000) # verify if refactoring was properly applied verifyMessage = "Verifying wrap component in loader functionality at element line." type(editorArea, "") type(editorArea, "") verifyCurrentLine(editorArea, "Component {", verifyMessage) type(editorArea, "") verifyCurrentLine(editorArea, "id: component_Item", verifyMessage) type(editorArea, "") verifyCurrentLine(editorArea, testingItemText, verifyMessage) type(editorArea, "") verifyCurrentLine(editorArea, "}", verifyMessage) type(editorArea, "") verifyCurrentLine(editorArea, "Loader {", verifyMessage) type(editorArea, "") verifyCurrentLine(editorArea, "id: loader_Item", verifyMessage) type(editorArea, "") verifyCurrentLine(editorArea, "sourceComponent: component_Item", verifyMessage) type(editorArea, "") verifyCurrentLine(editorArea, "}", verifyMessage) # save and exit invokeMenuItem("File", "Save All") invokeMenuItem("File", "Exit")