1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2024-09-22 15:07:22 +00:00

Add wait time to let the application start properly.

This commit is contained in:
Lukáš Růžička 2022-07-19 14:49:26 +02:00
parent e8543a1764
commit 621f6c13b5

View File

@ -22,7 +22,10 @@ sub run {
assert_and_click 'kde_finish'; assert_and_click 'kde_finish';
wait_still_screen 2; wait_still_screen 2;
# Check that it is started # Check that it is started
assert_screen 'kmouth_runs'; # July 19th, I realized that kmouth test has been failing,
# but it seems that it takes more time to run than
# the needle is willing to wait. Adding wait time.
assert_screen('kmouth_runs', timeout => 300);
# Close the application # Close the application
quit_with_shortcut(); quit_with_shortcut();
} }