From cbd251d65c50e77cbeaa29bce008522965e1a152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20R=C5=AF=C5=BEi=C4=8Dka?= Date: Fri, 26 Sep 2025 11:43:20 +0200 Subject: [PATCH] Add mouse move and mouse click The top panel stays in the application and does not hide. I might be caused by the mouse being in top area which normally invokes the panel to appear. Let's move the mouse and click into the middle of the screen to free the top area. --- tests/applications/navigation/full_screen.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/applications/navigation/full_screen.pm b/tests/applications/navigation/full_screen.pm index 21eaffb7..66820057 100644 --- a/tests/applications/navigation/full_screen.pm +++ b/tests/applications/navigation/full_screen.pm @@ -27,7 +27,10 @@ sub run { # We still need to see the prompt. However in a virtual machine, # it sometimes takes some time before the prompt appears. Let's - # wait for it some more time. + # wait for it some more time. Also try to move the mouse + # and click in the middle to unblock the top panel. + mouse_set(500, 350); + mouse_click("left"); assert_screen("terminal_prompt", timeout => 60); # But we should not see the panels. if (check_screen("panel_controls")) {