Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

appium-uiauto

Package Overview
Dependencies
Maintainers
6
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appium-uiauto - npm Package Compare versions

Comparing version 1.7.16 to 1.8.0

test/uiauto/sendkey-specs.js

3

lib/dynamic-bootstrap.js

@@ -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;
};
})();
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc