From d66b185471ab61130462c6ecbf2f5a7a3ecbf266 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: May 05 2020 17:19:31 +0000 Subject: solidify_wallpaper: restore a wait_still_screen in GNOME path The old code waited after launching the terminal, the new code doesn't, which led to a 'g' being swallowed in the first command in https://openqa.fedoraproject.org/tests/592759 . Signed-off-by: Adam Williamson --- diff --git a/lib/utils.pm b/lib/utils.pm index f05fba3..b4c3377 100644 --- a/lib/utils.pm +++ b/lib/utils.pm @@ -1219,6 +1219,8 @@ sub solidify_wallpaper { elsif ($desktop eq "gnome") { # Start the terminal to set up backgrounds. menu_launch_type "gnome-terminal"; + # wait to be sure it's fully open + wait_still_screen 5; # When the application opens, run command in it to set the background to black type_very_safely "gsettings set org.gnome.desktop.background picture-uri ''"; send_key 'ret';