Hi,
How do I make my code wait until, for example, picture1.visible becomes false (I don't know how much time it will take until picture1.visible=false so I can't use sleep(...)). I need something like:
label1.text="..."
picture1.image=...
wait until picture1.visible=false
label1.text="picture1 is not visible"
...
Is it the same for waiting that a string str becomes empty i.e.
wait until str=""?
Thank you so much
How do I make my code wait until, for example, picture1.visible becomes false (I don't know how much time it will take until picture1.visible=false so I can't use sleep(...)). I need something like:
label1.text="..."
picture1.image=...
wait until picture1.visible=false
label1.text="picture1 is not visible"
...
Is it the same for waiting that a string str becomes empty i.e.
wait until str=""?
Thank you so much