mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-22 05:53:09 +00:00
gnome-initial-setup: work around #1997310 (GOA screen missing)
There's a bug in current F35/Rawhide which causes the GOA screen in g-i-s not to show up. Since failing on that will block a lot of testing, let's handle it as a soft failure. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
9231df62ac
commit
453053f4ed
14
lib/utils.pm
14
lib/utils.pm
@ -768,10 +768,18 @@ sub gnome_initial_setup {
|
||||
}
|
||||
}
|
||||
unless (get_var("VNC_CLIENT")) {
|
||||
# click 'Skip' one time (this is the 'goa' screen). We don't
|
||||
# get it on VNC_CLIENT case as network isn't working (yet)
|
||||
# We should be at the GOA screen, except on VNC_CLIENT case
|
||||
# where network isn't working yet. click 'Skip' one time. If
|
||||
# it's not visible we may have hit
|
||||
# https://bugzilla.redhat.com/show_bug.cgi?id=1997310 , which
|
||||
# we'll handle as a soft failure
|
||||
mouse_set(100,100);
|
||||
wait_screen_change { assert_and_click "skip_button"; };
|
||||
if (check_screen "skip_button", 60) {
|
||||
wait_screen_change { click_lastmatch; };
|
||||
}
|
||||
else {
|
||||
record_soft_failure "GOA screen not seen! Likely RHBZ #1997310";
|
||||
}
|
||||
}
|
||||
send_key "ret";
|
||||
if ($args{prelogin}) {
|
||||
|
Loading…
Reference in New Issue
Block a user