Set a timeout for the cockpit_services_detail check_screen

Seems default for check_screen is 0, not 30 as I assumed.

Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
Adam Williamson 2020-03-12 19:17:27 -07:00
parent 81f8b783e7
commit 657f29c399
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ sub run {
assert_and_click "cockpit_services_entry";
# check we get to the appropriate detail screen...but this click
# often gets lost for some reason, so retry it once
assert_and_click "cockpit_services_entry" unless (check_screen "cockpit_services_detail");
assert_and_click "cockpit_services_entry" unless (check_screen "cockpit_services_detail", 10);
assert_screen "cockpit_services_detail";
}