Is there a way to run automated tests using Protractor (or WebDriverJS) on a MAC with Appium and the IOS Simulator?
We have been unsuccessful in running tests with the following configuration file, although it works fine with Selenium 2.0 - WebDriver.
Here is the configuration file for 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
}
};