Skip to content

Instantly share code, notes, and snippets.

@indirect
Created April 8, 2013 18:27
Show Gist options
  • Save indirect/5339229 to your computer and use it in GitHub Desktop.
Save indirect/5339229 to your computer and use it in GitHub Desktop.
change selenium timeout
require 'selenium/webdriver'
Capybara.register_driver :selenium_with_long_timeout do |app|
client = Selenium::WebDriver::Remote::Http::Default.new
client.timeout = 3600
Capybara::Selenium::Driver.new(app, :browser => :firefox, :http_client => client)
end
Capybara.current_driver = :selenium_with_long_timeout
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment