Created
February 2, 2014 04:41
-
-
Save fernyb/8763158 to your computer and use it in GitHub Desktop.
Selenium WebDriver for Appium settings
This file contains hidden or 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
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