From fd3363a2f8c2a8589ed8802afa43cf7741cf0553 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Wed, 17 Jul 2019 18:11:37 +0200 Subject: [PATCH] Squish: Update tst_create_proj_wizard Change-Id: I59b4829abd0d98cbf346e68e3d634da87b3a635e Reviewed-by: Christian Stenger --- .../system/suite_general/tst_create_proj_wizard/test.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/system/suite_general/tst_create_proj_wizard/test.py b/tests/system/suite_general/tst_create_proj_wizard/test.py index e3bee3b2a4d..7490427692b 100644 --- a/tests/system/suite_general/tst_create_proj_wizard/test.py +++ b/tests/system/suite_general/tst_create_proj_wizard/test.py @@ -81,8 +81,13 @@ def main(): # are there more Quick combinations - then recreate this project if counter < len(qtVersionsForQuick) - 1: displayedPlatforms = __createProject__(category, template) - continue - handleBuildSystemVerifyKits(category, template, kits, displayedPlatforms) + elif template in ("Qt Widgets Application", "C++ Library"): + def skipDetails(_): + clickButton(waitForObject(":Next_QPushButton")) + handleBuildSystemVerifyKits(category, template, kits, + displayedPlatforms, skipDetails) + else: + handleBuildSystemVerifyKits(category, template, kits, displayedPlatforms) invokeMenuItem("File", "Exit")