Skip to content

Instantly share code, notes, and snippets.

@Jonahss
Last active December 15, 2015 01:14
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 Jonahss/6ebee30b8b443f51ae86 to your computer and use it in GitHub Desktop.
Save Jonahss/6ebee30b8b443f51ae86 to your computer and use it in GitHub Desktop.
Simple Appium Script: local, ios, safari
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