Reputation: 49
I am using androidviewclient from dtmilano and it works great.
I need to know how do I wait for a specific view to appear on the screen and then take an action ?
I am using getandroidview() but not able to understand its correct implementation.
Please help me regarding this.
Upvotes: 1
Views: 475
Reputation: 69358
The simplest way would be:
...
while True:
vc.dump()
if vc.findViewWithText('Hello World!'):
# do something
pass
else:
time.sleep(5)
Upvotes: 2