From d8c374044acb37df06cdb139989a3ce77699ceb6 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 4 Jul 2023 17:25:52 -0700 Subject: [PATCH] Add more safety to the fullscreen for Archiver We can't really just hit super-up and then immediately go on our merry way clicking on stuff... Signed-off-by: Adam Williamson --- tests/applications/archiver/aaa_setup.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/applications/archiver/aaa_setup.pm b/tests/applications/archiver/aaa_setup.pm index f5eb4349..23320600 100644 --- a/tests/applications/archiver/aaa_setup.pm +++ b/tests/applications/archiver/aaa_setup.pm @@ -23,7 +23,8 @@ sub run { # Check it has started assert_screen 'apps_run_files'; # Fullsize the window. - send_key("super-up"); + wait_screen_change { send_key("super-up"); }; + wait_still_screen 3; # Open the Documents directory assert_and_click("gnome_open_location_documents");