问题
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.
回答1:
The simplest way would be:
...
while True:
vc.dump()
if vc.findViewWithText('Hello World!'):
# do something
pass
else:
time.sleep(5)
来源:https://stackoverflow.com/questions/25729366/waiting-for-a-specific-view-on-androidviewclient