1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-21 13:33:08 +00:00

calculator: handle short About screen with a soft failure

See https://gitlab.gnome.org/GNOME/gnome-calculator/-/issues/419

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-07-04 15:01:58 -07:00
parent 827756b43d
commit e3b348429a

View File

@ -17,7 +17,12 @@ sub run {
# Check that it is shown.
assert_screen("calc_about_shown");
# Click on the Credits button and check that it shows.
assert_and_click("gnome_button_credits");
unless (check_screen("gnome_button_credits", 30)) {
send_key("pgdn");
assert_screen("gnome_button_credits", 15);
record_soft_failure("https://gitlab.gnome.org/GNOME/gnome-calculator/-/issues/419");
}
click_lastmatch;
assert_screen("calc_credits_shown");
}