Skip to content

Instantly share code, notes, and snippets.

@rstormsf
Created March 15, 2015 00:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rstormsf/e76075840fb6d93b1640 to your computer and use it in GitHub Desktop.
Save rstormsf/e76075840fb6d93b1640 to your computer and use it in GitHub Desktop.
Selenium
mobile_emulation = { "deviceName" => "Google Nexus 5" }
caps = Selenium::WebDriver::Remote::Capabilities.chrome(
"chromeOptions" => { "mobileEmulation" => mobile_emulation })
@driver = Selenium::WebDriver.for :remote, url: 'http://localhost:4444/wd/hub', desired_capabilities: caps
@driver.navigate.to "https://www.gmail.com/"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment