forked from appium-boneyard/sample-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.js
More file actions
16 lines (15 loc) · 1.08 KB
/
apps.js
File metadata and controls
16 lines (15 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if (process.env.DEV) {
exports.iosTestApp = "sample-code/apps/TestApp/build/release-iphonesimulator/TestApp-iphonesimulator.app";
exports.iosWebviewApp = "sample-code/apps/WebViewApp/build/release-iphonesimulator/WebViewApp.app";
exports.iosUICatalogApp = "sample-code/apps/UICatalog/build/release-iphonesimulator/UICatalog.app";
exports.androidApiDemos = "sample-code/apps/ApiDemos/bin/ApiDemos-debug.apk";
exports.selendroidTestApp = "sample-code/apps/selendroid-test-app.apk";
} else {
exports.iosTestApp = "http://appium.github.io/appium/assets/TestApp7.1.app.zip";
exports.iosWebviewApp = "http://appium.github.io/appium/assets/WebViewApp7.1.app.zip";
exports.iosUICatalogApp = "http://appium.github.io/appium/assets/UICatalog7.1.app.zip";
exports.androidApiDemos = "http://appium.github.io/appium/assets/ApiDemos-debug.apk";
exports.selendroidTestApp = "http://appium.github.io/appium/assets/selendroid-test-app-0.10.0.apk";
exports.iosWebviewAppLocal = "http://localhost:3000/WebViewApp7.1.app.zip";
exports.androidApiDemosLocal = "http://localhost:3000/ApiDemos-debug.apk";
}