Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jakubpawlowicz/476677 to your computer and use it in GitHub Desktop.
Save jakubpawlowicz/476677 to your computer and use it in GitHub Desktop.
Capybara.register_driver :custom_firefox do |app|
profile = Selenium::WebDriver::Firefox::Profile.new
profile['dom.max_script_run_time'] = '60'
Capybara::Driver::Selenium.new(app, browser: :firefox, profile: profile)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment