From f91b21dec980527d80de014b23dce96fd516917d Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 31 May 2021 15:45:05 -0700 Subject: [PATCH] anaconda_help: try a wait_still_screen after install_destination Still hitting a fail sometimes on the spoke after Installation Destination, when anaconda is still sorting things out and the test tries to do stuff too fast. e.g. https://openqa.stg.fedoraproject.org/tests/1206252 . See if this helps. Signed-off-by: Adam Williamson --- lib/anaconda.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/anaconda.pm b/lib/anaconda.pm index 55f54604..a449ed63 100644 --- a/lib/anaconda.pm +++ b/lib/anaconda.pm @@ -355,6 +355,8 @@ sub check_help_on_pane { # can throw off the match here. so we'll try hitting shift-tab # a few times to shift focus send_key_until_needlematch("anaconda_main_hub", "shift-tab"); + # things can take some time to settle after this one + wait_still_screen 10 if ($screen eq "install_destination"); } }