# HG changeset patch
# User Edouard Tisserant <edouard.tisserant@gmail.com>
# Date 1671112192 -3600
# Node ID a538a163ff6f673b4a93aef752b548515c43d449
# Parent  12b6add878769d4f7dd2449a535fb42940be204a
IDE tests: ensure that file browser idled before entering path in new_project

diff -r 12b6add87876 -r a538a163ff6f tests/ide_tests/new_project.sikuli/new_project.py
--- a/tests/ide_tests/new_project.sikuli/new_project.py	Thu Dec 15 14:46:48 2022 +0100
+++ b/tests/ide_tests/new_project.sikuli/new_project.py	Thu Dec 15 14:49:52 2022 +0100
@@ -28,11 +28,15 @@
     # Move to "Home" section of file selecor, otherwise address is 
     # "file ignored" at first run
     app.type("f", Key.CTRL)
+    app.WaitIdleUI()
     app.type(Key.ESC)
+    app.WaitIdleUI()
     app.type(Key.TAB)
+    app.WaitIdleUI()
     
     # Enter directory by name
     app.k.Address()
+    app.WaitIdleUI()
     
     # Fill address bar
     app.type(new_project_path + Key.ENTER)