I'm trying to wait on a specific window (that I found using the children method from the top window) but it seems that the UIAWrapper
doesn't have the wait
method.
What can be done to use wait
on this window? or maybe convert the UIAWrapper
object to the WindowSpecification
object?
So for example, I can do this:
app.top_window().wait("enabled")
But I can't do this:
app.top_window().children()[0].wait("enabled")