1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-21 06:27:22 +00:00

maps/export: tweak for respin testing

We also need to use the old workflow for f40 respin testing.
Also, put back a wait and some comments that were left out of
the 'old' flow.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-07-15 16:30:55 -07:00
parent 2356d27268
commit 57dc6b691a

View File

@ -13,13 +13,25 @@ sub run {
assert_and_click("gnome_burger_menu"); assert_and_click("gnome_burger_menu");
assert_and_click("maps_menu_export"); assert_and_click("maps_menu_export");
# The Rawhide version is not the latest one, so my $relnum = get_release_number;
# this will only be valid for non Silverblue images. # the export flow was changed in gnome-maps 47. Releases earlier
# For Silverblue, check the else statement. When # than Rawhide and, for now, the flatpak build are still 46, so
# the newest version get into Silverblue, # we use the older flow there
# the condition should be removed.
# FIXME! # FIXME!
if (get_var('SUBVARIANT') ne 'Silverblue') { if ($relnum < 41 || get_var('CANNED')) {
# old flow
# wait for the export screen to appear and settle
assert_screen('maps_button_export');
wait_still_screen(2);
# Rename the file and export it.
# The name entry field should have focus already, so we are
# just going to rename the proposed file name.
send_key('ctrl-a');
type_very_safely('exported-map.png');
assert_and_click('maps_button_export');
}
else {
# new flow
# wait for the export screen to appear and settle # wait for the export screen to appear and settle
assert_and_click("maps_button_export"); assert_and_click("maps_button_export");
wait_still_screen(2); wait_still_screen(2);
@ -30,12 +42,6 @@ sub run {
type_very_safely("exported-map.png"); type_very_safely("exported-map.png");
assert_and_click("maps_button_save"); assert_and_click("maps_button_save");
} }
else {
assert_screen('maps_button_export');
send_key('ctrl-a');
type_very_safely('exported-map.png');
assert_and_click('maps_button_export');
}
# After the map has been exported, we will open # After the map has been exported, we will open
# it in an image viewer to see that it is correct. # it in an image viewer to see that it is correct.