1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-02-09 00:53:10 +00:00

Softfail when not found.

This commit is contained in:
Lukas Ruzicka 2023-03-23 17:24:14 +01:00
parent 218e346e3c
commit 38a3fde9bc

View File

@ -36,8 +36,13 @@ sub run {
# Open the Play category.
assert_and_click("software_category_play");
assert_and_click("software_application_chess");
check_application_information("chess");
if (check_screen("software_application_chess")) {
click_lastmatch();
check_application_information("chess");
}
else {
record_soft_failure("The application was not listed on the first screen.");
}
}
sub test_flags {