Skip to content

Instantly share code, notes, and snippets.

@titusfortner
Created April 10, 2015 17:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save titusfortner/653ab5bb8a901ba3b41b to your computer and use it in GitHub Desktop.
Save titusfortner/653ab5bb8a901ba3b41b to your computer and use it in GitHub Desktop.
Escape Alerts
def ensure_no_alert
@alert.accept if alert?
end
def alert?
@alert = @driver.switch_to.alert
true
rescue Selenium::WebDriver::Error::NoAlertPresentError
false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment