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 wait timeout f =
let sw = System.Diagnostics.Stopwatch.StartNew()
let rec innerwait timeout f =
if sw.Elapsed.TotalSeconds >= timeout then
raise <| WebDriverTimeoutException("Timed out!")
try
let result = f()
if result <> true then
sleep 500ms
innerwait timeout f
with
| :? WebDriverTimeoutException as ex -> reraise()
| _ ->
sleep 500ms
innerwait timeout f
innerwait timeout f
This will allow dropping of this dependency.
The text was updated successfully, but these errors were encountered:
Something like
This will allow dropping of this dependency.
The text was updated successfully, but these errors were encountered: