From d8c374044acb37df06cdb139989a3ce77699ceb6 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Jul 05 2023 00:25:52 +0000 Subject: 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 --- diff --git a/tests/applications/archiver/aaa_setup.pm b/tests/applications/archiver/aaa_setup.pm index f5eb434..2332060 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");