Skip to content

Upgraded Appium to support latest version of xcode #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 15, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ It has sample data in the `models.js` file. For example, there is a user bleonar

The integration tests are run using [Appium](http://appium.io/).

There is also an [example](https://github.com/taskrabbit/ReactNativeSampleApp/blob/master/.travis.yml) of to to run it on Travis CI: [![Build Status](https://travis-ci.org/taskrabbit/ReactNativeSampleApp.svg?branch=master)](https://travis-ci.org/taskrabbit/ReactNativeSampleApp)
There is also an [example](https://github.com/taskrabbit/ReactNativeSampleApp/blob/master/.travis.yml) of how to run it on Travis CI: [![Build Status](https://travis-ci.org/taskrabbit/ReactNativeSampleApp.svg?branch=master)](https://travis-ci.org/taskrabbit/ReactNativeSampleApp)

To run tests:

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"superagent": "1.5.0"
},
"devDependencies": {
"appium": "1.4.13",
"appium": "1.5.1",
"babel-core": "^6.1.20",
"babel-eslint": "4.1.4",
"babel-plugin-external-helpers-2": "^6.1.4",
Expand Down
8 changes: 4 additions & 4 deletions test/helpers/driver.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ var UNLIMITED = 100000;

var caps = {
browserName: '',
'appium-version': '1.4.8',
'appium-version': '1.5.1',
platformName: 'iOS',
platformVersion: '9.0',
deviceName: 'iPhone 6',
platformVersion: '9.3',
deviceName: 'iPhone 6s',
autoLaunch: 'true',
newCommandTimeout: UNLIMITED,
app: process.cwd() + "/testbuild/test_ios/sample_ios.zip"
Expand Down Expand Up @@ -110,4 +110,4 @@ module.exports = function(callback) {
});
});
});
};
};