Skip to content

Instantly share code, notes, and snippets.

@chebyte
Created October 19, 2012 15:38
Show Gist options
  • Save chebyte/3918906 to your computer and use it in GitHub Desktop.
Save chebyte/3918906 to your computer and use it in GitHub Desktop.
require "nokogiri"
require "watir-webdriver"
browser = Watir::Browser.new :firefox
browser.goto "http://127.0.0.1:8080/"
browser.javascript_dialog.button('OK').click
if browser.alert.exists?
browser.alert.ok
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment