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")