maps: add some sleeps to the zoom test

These loops make us click extremely fast. This may cause
unreliable results, I think. At least, the test is failing a
lot lately, with results that look like it's not always getting
the expected four levels of zoom. Let's try a short sleep
between clicks.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2024-02-16 17:52:19 -08:00
parent 106a63f101
commit caa4353fe0
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@ sub run {
# Zoom in several times and check for zoomed map.
assert_and_click("maps_button_zoom_in");
foreach (my @counter = (1 .. 4)) {
sleep 1;
click_lastmatch();
}
assert_screen("maps_map_zoomed", timeout => 60);
@ -20,6 +21,7 @@ sub run {
# Zoom out several times and check for zoomed out map.
assert_and_click("maps_button_zoom_out");
foreach (my @counter = (1 .. 4)) {
sleep 1;
click_lastmatch();
}
assert_screen("maps_found_brno", timeout => 60);