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 using the call predicate.TextContains with that call .Has("lastName", predicate.TextContains("t") and this creates an error, because the passed variable content will not be quoted, I must replace it with .Has("lastName", predicate.TextContains(""t"")` .
In my opinion the definition of the function seems not be correct:
Hello,
I'm using the call
predicate.TextContains
with that call.Has("lastName", predicate.TextContains("t")
and this creates an error, because the passed variable content will not be quoted, I must replace it with .Has("lastName", predicate.TextContains(""t"")` .In my opinion the definition of the function seems not be correct:
The fixed definition of the first function line should be
Other calls can be create similar issues.
Thx
The text was updated successfully, but these errors were encountered: