Hello,
I’m trying to find elements that contains a specific string on my iOS app, with ruby.
It’s ok with
find_elements(name: “Mon text est ici super”)
but when I try regex like this :
find_elements(name: /^Mon text/)
I have no match.
I really don’t understand why because it should works… or maybe I ma missing something.
Thanks !