Fix Krusader

It seems that there was a lag in button drawing, which prevented
OpenQA from fully recognizing the krusader_welcome needle because
it was evaluated too soon.
I added "wait_still_screen 3" to make sure, there is time for a
button to be drawn correctly before assertion.
This commit is contained in:
Lukas Ruzicka 2019-03-27 11:30:01 +01:00
parent ff4ceb55ff
commit 7dd43daab8

View File

@ -13,6 +13,7 @@ sub run {
# Deal with the welcome screens
while (check_screen('krusader_welcome', '1')){
assert_and_click 'krusader_welcome';
wait_still_screen 3;
}
# Settings close
assert_and_click 'krusader_settings_close';