mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-25 06:31:26 +00:00
Change g-i-s 'nexts' count for F28+
Several screens are now skipped in g-i-s pre-login mode, we have to adjust the number we expect. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
ed9945de71
commit
f1913e8305
10
lib/utils.pm
10
lib/utils.pm
@ -428,7 +428,15 @@ sub gnome_initial_setup {
|
|||||||
);
|
);
|
||||||
my $nexts = 3;
|
my $nexts = 3;
|
||||||
if ($args{prelogin}) {
|
if ($args{prelogin}) {
|
||||||
$nexts = 5;
|
my $version = lc(get_var("VERSION"));
|
||||||
|
if ($version eq 'rawhide' || $version > 27) {
|
||||||
|
# several screens are suppressed in pre-login g-i-s:
|
||||||
|
# https://fedoraproject.org/wiki/Changes/ReduceInitialSetupRedundancy
|
||||||
|
$nexts = 2;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$nexts = 5;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
assert_screen "next_button", $args{timeout};
|
assert_screen "next_button", $args{timeout};
|
||||||
# wait a bit in case of animation
|
# wait a bit in case of animation
|
||||||
|
Loading…
Reference in New Issue
Block a user