From 48cee79928bccd63c0443a32644c6b06b4edd950 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 17 Mar 2021 14:19:20 -0700 Subject: [PATCH] Always wait_still_screen after hitting Update Settings It can take anaconda a bit of time to think about things, so we should wait before plowing on. Signed-off-by: Adam Williamson --- lib/anaconda.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/anaconda.pm b/lib/anaconda.pm index 593863d1..07a165f8 100644 --- a/lib/anaconda.pm +++ b/lib/anaconda.pm @@ -237,6 +237,7 @@ sub custom_change_type { mouse_set(10, 10); assert_and_click "anaconda_part_device_type_$type"; assert_and_click "anaconda_part_update_settings"; + wait_still_screen 5; } sub custom_change_fs { @@ -259,6 +260,7 @@ sub custom_change_fs { mouse_set(10, 10); assert_and_click "anaconda_part_fs_$fs"; assert_and_click "anaconda_part_update_settings"; + wait_still_screen 5; } sub custom_change_device { @@ -270,6 +272,7 @@ sub custom_change_device { } assert_and_click "anaconda_part_device_select"; assert_and_click "anaconda_part_update_settings"; + wait_still_screen 5; } sub custom_delete_part {