Last active
December 15, 2015 01:14
-
-
Save Jonahss/6ebee30b8b443f51ae86 to your computer and use it in GitHub Desktop.
Simple Appium Script: local, ios, safari
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
var wd = require('wd') | |
var remote = wd.remote('localhost', 4723) | |
var caps = { | |
"deviceName": "iPhone Simulator", | |
"browserName": "Safari", | |
"platformVersion": "8.2", | |
"platformName":"iOS", | |
"newCommandTimeout": 100000, | |
"appiumVersion": "1.5.0-beta", | |
"safariIgnoreFraudWarning": true, | |
"prevent-requeue": true, | |
"isolateSimDevice": true | |
} | |
remote.init(caps) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment