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