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
let element cssSelector =
waitFor (fun _ ->
let elems = elements cssSelector
if elems.Length = 0 then false else true
)
canopy.core.element cssSelector
let elementWithin cssSelector e =
waitFor (fun _ ->
let elems = elementsWithin cssSelector e
if elems.Length = 0 then false else true
)
canopy.core.elementWithin cssSelector e
getting exception on .head of private find when element does not exist. It should find stuff reliably
The text was updated successfully, but these errors were encountered: