Waiting for a specific view on androidviewclient

2019-08-10 05:31发布

问题:

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)