Skip to content

Instantly share code, notes, and snippets.

@gaffneyc
Created June 9, 2010 19:06
Show Gist options
  • Save gaffneyc/432000 to your computer and use it in GitHub Desktop.
Save gaffneyc/432000 to your computer and use it in GitHub Desktop.
require 'selenium-webdriver'
class Capybara::Driver::Selenium < Capybara::Driver::Base
def self.driver
unless @driver
@driver = Selenium::WebDriver.for :firefox, :profile => 'webdriver'
at_exit do
@driver.quit
end
end
@driver
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment