Search code examples
androidviewclient

Waiting for a specific view on androidviewclient


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.


Solution

  • The simplest way would be:

    ...
    while True:
        vc.dump()
        if vc.findViewWithText('Hello World!'):
            # do something
            pass
        else:
            time.sleep(5)