Skip to content

Instantly share code, notes, and snippets.

@tomazy
Created October 4, 2013 06:16
Show Gist options
  • Save tomazy/6821684 to your computer and use it in GitHub Desktop.
Save tomazy/6821684 to your computer and use it in GitHub Desktop.
require 'selenium/webdriver'
class Selenium::WebDriver::Navigation
alias_method :original_to, :to
def to(url)
url = 'file://reset-session-hack' if url == 'about:blank'
original_to(url)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment