You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying something like client.findViewWithAttributeThatMatches(attr="text", regex=re.compile(fr"\babc\b")). however, if "abc" isn't at beggining of the text, the view doesn't match
Changing regex.match to regex.search fix the issue
I'm trying something like
client.findViewWithAttributeThatMatches(attr="text", regex=re.compile(fr"\babc\b"))
. however, if "abc" isn't at beggining of the text, the view doesn't matchChanging
regex.match
toregex.search
fix the issueAndroidViewClient/src/com/dtmilano/android/viewclient.py
Line 3958 in 9be41ba
It doesn't seem to break anything
The text was updated successfully, but these errors were encountered: