appium-uiauto
Advanced tools
Comparing version 1.7.16 to 1.8.0
@@ -24,3 +24,4 @@ // Generate a bootstrap for the UIAuto Instruments script containing | ||
justLoopInfinitely: opts.justLoopInfinitely, | ||
autoAcceptAlerts: opts.autoAcceptAlerts | ||
autoAcceptAlerts: opts.autoAcceptAlerts, | ||
sendKeyStrategy: opts.sendKeyStrategy, | ||
}; | ||
@@ -27,0 +28,0 @@ return bootstrapEnv; |
{ | ||
"name": "appium-uiauto", | ||
"version": "1.7.16", | ||
"version": "1.8.0", | ||
"description": "appium uiauto ios driver", | ||
@@ -5,0 +5,0 @@ "main": "lib/main.js", |
@@ -18,4 +18,6 @@ /* globals $, env */ | ||
} | ||
if (isAccented(newValue)) { | ||
if (env.sendKeyStrategy === 'setValue' || isAccented(newValue)) { | ||
this.setValue(newValue); | ||
} else if (env.sendKeyStrategy === 'grouped') { | ||
$.sendKeysToActiveElement(newValue); | ||
} else { | ||
@@ -22,0 +24,0 @@ /* |
@@ -13,4 +13,5 @@ var env; | ||
this.autoAcceptAlerts = dynamicEnv.autoAcceptAlerts; | ||
this.sendKeyStrategy = dynamicEnv.sendKeyStrategy; | ||
}; | ||
})(); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13357247
156
3692