openatx/uiautomator2

proper way to wait and fetch element

Open

#479 opened on Nov 13, 2019

View on GitHub
 (1 comment) (0 reactions) (0 assignees)Python (1,353 forks)batch import
enhancementhelp wanted

Repository metrics

Stars
 (5,632 stars)
PR merge metrics
 (Avg merge 1d 21h) (5 merged PRs in 30d)

Description

I currently need to use 2 lines to wait not the golbal timeout:

text = 'play'
timeout = 30
device(textMatches=text).wait(timeout)
element = self.device(textMatches=text)

Is there a better solution, to wait for element existance ?

Contributor guide