mirror of
https://github.com/appium/appium.git
synced 2026-05-07 19:40:01 -05:00
no need for this to be a property
This commit is contained in:
@@ -70,8 +70,8 @@ var IOS = function(args) {
|
||||
this.onPageChangeCb = null;
|
||||
this.useRobot = args.robotPort > 0;
|
||||
this.robotUrl = this.useRobot ? "http://" + args.robotAddress + ":" + args.robotPort + "" : null;
|
||||
this.safariLauncherAppName = "/safarilauncher.app";
|
||||
this.isSafariLauncherApp = (typeof args.app !== "undefined") && (args.app.toLowerCase().indexOf(this.safariLauncherAppName, args.app.length - this.safariLauncherAppName.length) !== -1);
|
||||
var safariLauncherAppName = "/safarilauncher.app";
|
||||
this.isSafariLauncherApp = (typeof args.app !== "undefined") && (args.app.toLowerCase().indexOf(safariLauncherAppName, args.app.length - safariLauncherAppName.length) !== -1);
|
||||
this.capabilities = {
|
||||
version: '6.0'
|
||||
, webStorageEnabled: false
|
||||
|
||||
Reference in New Issue
Block a user