Skip to content

Instantly share code, notes, and snippets.

@KevM
Forked from lefthandedgoat/gist:6554142
Created September 13, 2013 18:35
Show Gist options
  • Save KevM/6554377 to your computer and use it in GitHub Desktop.
Save KevM/6554377 to your computer and use it in GitHub Desktop.
**on** equals vs. contains compromise?
let on (u: string) =
try
wait pageTimeout (fun _ -> browser.Url = u)
with
| ex -> if browser.Url.Contains(u) = false then raise (CanopyOnException(sprintf "on check failed, expected expression '%s' got %s" u browser.Url));
@KevM
Copy link
Author

KevM commented Sep 14, 2013

Cool I'll get you a PR when I get a chance sadly my laptop charger is busted so that means Monday.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment