1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-11-01 05:54:22 +00:00

anaconda on wayland: also click on other spoke launchers

It's not just Installation Destination, on aarch64 at least we
have lots of tests failing because entering the source or software
selection spokes didn't work. Let's try extra clicks for these
too.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-10-22 16:32:45 -07:00
parent 9ec6d3bf23
commit d3c97a64be
2 changed files with 8 additions and 0 deletions

View File

@ -28,6 +28,10 @@ sub run {
}
assert_and_click "anaconda_main_hub_select_packages";
# as with installation destination, on wayland it seems like
# sometimes the first click is lost, so click twice
sleep 1;
click_lastmatch;
wait_still_screen 3;
# select desired environment

View File

@ -58,6 +58,10 @@ sub run {
# Go into the Install Source spoke
assert_and_click "anaconda_main_hub_installation_source";
# as with installation destination, on wayland it seems like
# sometimes the first click is lost, so click twice
sleep 1;
click_lastmatch;
main_repo() if (get_var("REPOSITORY_GRAPHICAL") || get_var("MIRRORLIST_GRAPHICAL"));