From d061a5683e69f55a4571ae77237adc84b4f7f1e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20R=C5=AF=C5=BEi=C4=8Dka?= Date: Mon, 24 Jan 2022 12:22:41 +0100 Subject: [PATCH] Add still screen waiting to make it more reliable. --- tests/applications/eog/about.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/applications/eog/about.pm b/tests/applications/eog/about.pm index 7c27412b..12deac7f 100644 --- a/tests/applications/eog/about.pm +++ b/tests/applications/eog/about.pm @@ -12,9 +12,11 @@ sub run { send_key("f10"); # Click on the About item assert_and_click("eog_menu_about"); + wait_still_screen(2); assert_screen("eog_about_shown"); # Click on Credits assert_and_click("eog_about_credits"); + wait_still_screen(2); assert_screen("eog_credits_shown"); }