Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bogdanRada/4286397 to your computer and use it in GitHub Desktop.
Save bogdanRada/4286397 to your computer and use it in GitHub Desktop.
Capybara.register_driver :iphone do |app|
require 'selenium/webdriver'
profile = Selenium::WebDriver::Firefox::Profile.new
profile['general.useragent.override'] = "iPhone"
Capybara::Driver::Selenium.new(app, :profile => profile)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment