Skip to content

Instantly share code, notes, and snippets.

@fernyb
Created February 2, 2014 04:41
Show Gist options
  • Save fernyb/8763158 to your computer and use it in GitHub Desktop.
Save fernyb/8763158 to your computer and use it in GitHub Desktop.
Selenium WebDriver for Appium settings
server_url= "http://127.0.0.1:4723/wd/hub"
driver = Selenium::WebDriver.for(:remote, :desired_capabilities => {
platform: 'Mac',
app: 'safari',
device: 'iPad Simulator',
# version: '7.0',
},
:url => server_url )
driver.manage.timeouts.implicit_wait = 20
driver
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment