Files
appium/app/parser.js
bootstraponline cff0957f06 Add -U for Android
Fix #375
2013-04-03 17:16:10 -04:00

194 lines
5.0 KiB
JavaScript

"use strict";
var ap = require('argparse').ArgumentParser
, pkgObj = require("../package")
, _ = require("underscore");
var args = [
[['--app'] , {
required: false
, defaultValue: null
, help: 'IOS: abs path to simulator-compiled .app file or the bundle_id of the desired target on device; Android: abs path to .apk file'
, example: "/abs/path/to/my.app"
}],
[['-V', '--verbose'], {
required: false
, defaultValue: false
, action: 'storeTrue'
, help: 'Get verbose logging output'
, nargs: 0
}],
[['-U', '--udid'] , {
required: false
, defaultValue: null
, example: "1adsf-sdfas-asdf-123sdf"
, help: 'Unique device identifier of the connected physical device'
}],
[['-a', '--address'] , {
defaultValue: '0.0.0.0'
, required: false
, example: "0.0.0.0"
, help: 'IP Address to listen on'
}],
[['-p', '--port'] , {
defaultValue: 4723
, required: false
, type: 'int'
, example: "4723"
, help: 'port to listen on'
}],
[['-k', '--keep-artifacts'] , {
defaultValue: false
, dest: 'keepArtifacts'
, action: 'storeTrue'
, required: false
, help: '(IOS-only) Keep Instruments trace directories'
, nargs: 0
}],
[['--fast-reset'] , {
defaultValue: false
, dest: 'fastReset'
, action: 'storeTrue'
, required: false
, help: '(Android-only) Reset app state using clean.apk'
, nargs: 0
}],
[['--no-reset'] , {
defaultValue: false
, dest: 'noReset'
, action: 'storeTrue'
, required: false
, help: 'Reset app state after each session (IOS: delete plist; Android: ' +
'install app before session and uninstall after session)'
, nargs: 0
}],
[['-l', '--pre-launch'] , {
defaultValue: false
, dest: 'launch'
, action: 'storeTrue'
, required: false
, help: 'Pre-launch the application before allowing the first session ' +
'(Requires --app and, for Android, --app-pkg and --app-activity)'
, nargs: 0
}],
[['-g', '--log'] , {
defaultValue: null
, required: false
, example: "/path/to/appium.log"
, help: 'Log output to this file instead of stdout'
}],
[['-G', '--webhook'] , {
defaultValue: null
, required: false
, example: "localhost:9876"
, help: 'Also send log output to this HTTP listener'
}],
[['--without-delay'] , {
defaultValue: false
, dest: 'withoutDelay'
, action: 'storeTrue'
, required: false
, help: '(IOS-only) IOS has a weird built-in unavoidable delay. One way ' +
'around this is to run instruments with a library loaded to ' +
'patch it so that it skips the delay. Use this flag to speed up ' +
' test execution.'
, nargs: 0
}],
[['--app-pkg'], {
dest: 'androidPackage'
, defaultValue: null
, required: false
, example: "com.example.android.myApp"
, help: "(Android-only) Java package of the Android app you want to run " +
"(e.g., com.example.android.myApp)"
}],
[['--app-activity'], {
dest: 'androidActivity'
, defaultValue: 'MainActivity'
, required: false
, example: "MainActivity"
, help: "(Android-only) Activity name for the Android activity you want " +
"to launch from your package (e.g., MainActivity)"
}],
[['--app-wait-activity'], {
dest: 'androidWaitActivity'
, defaultValue: false
, required: false
, example: "SplashActivity"
, help: "(Android-only) Activity name for the Android activity you want " +
"to wait for (e.g., SplashActivity)"
}],
[['--device-ready-timeout'], {
dest: 'androidDeviceReadyTimeout'
, defaultValue: '5'
, required: false
, example: "5"
, help: "(Android-only) Timeout in seconds while waiting for device to become ready"
}],
[['--safari'], {
defaultValue: false
, action: 'storeTrue'
, required: false
, help: "(IOS-Only) Use the safari app"
, nargs: 0
}],
[['--force-iphone'], {
defaultValue: false
, dest: 'forceIphone'
, action: 'storeTrue'
, required: false
, help: "(IOS-only) Use the iPhone Simulator no matter what the app wants"
, nargs: 0
}],
[['--force-ipad'], {
defaultValue: false
, dest: 'forceIpad'
, action: 'storeTrue'
, required: false
, help: "(IOS-only) Use the iPad Simulator no matter what the app wants"
, nargs: 0
}],
[['--orientation'], {
defaultValue: null
, required: false
, example: "LANDSCAPE"
, help: "(IOS-only) use LANDSCAPE or PORTRAIT to initialize all requests " +
"to this orientation"
}]
];
// Setup all the command line argument parsing
module.exports = function() {
var parser = new ap({
version: pkgObj.version,
addHelp: true,
description: 'A webdriver-compatible server for use with native and hybrid iOS and Android applications.'
});
_.each(args, function(arg) {
parser.addArgument(arg[0], arg[1]);
});
parser.rawArgs = args;
return parser;
};