Created
December 4, 2014 10:43
-
-
Save rcdexta/e5d6f93955715ab09ddf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Capybara.default_driver = :selenium | |
it_profile = Selenium::WebDriver::Firefox::Profile.new | |
it_profile['intl.accept_languages'] = 'it' # Italian Locale | |
Capybara.register_driver :selenium do |app| | |
Capybara::Selenium::Driver.new(app, :browser => :firefox, | |
:profile => it_profile) | |
end | |
Capybara.current_session.driver.browser.capabilities.firefox_profile = it_profile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment