javascript - How to Automate Tests using Protractor with Appium and IOS-Simulator on MAC -


do know if there possible way run automated tests using protractor (or webdriverjs) on mac appium , ios-simulator?

we didn't succeed run tests following config file, otherwise works fine selenium 2.0 - webdriver,

the following config file (protractor):

exports.config = {   seleniumaddress: 'http://192.168.8.2:4723/wd/hub',     specs: ['todo-spec.js'],   capabilities: {     browsername: 'safari',     'appium-version': '1.3.7',     platformname: 'ios',     platformversion: '8.2',     devicename: 'iphone 5s'   },     jasminenodeopts: {     showcolors: true,     defaulttimeoutinterval: 90000     }   }; 

this config file i'm using protractor appium :

exports.config = {   allscriptstimeout: 600000,   seleniumaddress: 'http://0.0.0.0:4723/wd/hub',    specs: [     'testsuite/test3.js'   ],    capabilities: {     browsername: 'safari',    'appium-version': '1.4.13',     platformname: 'ios',     platformversion: '9.3',     devicename: 'ipad air',     'autowebview' : true          },    chromeonly: false,    baseurl: 'putyoururlhere',    framework:[     'jasmine'   ],  jasminenodeopts: {       defaulttimeoutinterval:1000000 }          };