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.10.1 to 1.10.2

1

lib/dynamic-bootstrap.js

@@ -25,2 +25,3 @@ // Generate a bootstrap for the UIAuto Instruments script containing

autoAcceptAlerts: opts.autoAcceptAlerts,
autoDismissAlerts: opts.autoDismissAlerts,
sendKeyStrategy: opts.sendKeyStrategy,

@@ -27,0 +28,0 @@ };

2

package.json
{
"name": "appium-uiauto",
"version": "1.10.1",
"version": "1.10.2",
"description": "appium uiauto ios driver",

@@ -5,0 +5,0 @@ "main": "lib/main.js",

@@ -13,2 +13,4 @@ /* global $, env */

$.acceptAlert();
} else if (env.autoDismissAlerts && alert.buttons().length > 0) {
$.dismissAlert();
}

@@ -15,0 +17,0 @@ return true;

@@ -13,2 +13,3 @@ var env;

this.autoAcceptAlerts = dynamicEnv.autoAcceptAlerts;
this.autoDismissAlerts = dynamicEnv.autoDismissAlerts;
this.sendKeyStrategy = dynamicEnv.sendKeyStrategy;

@@ -15,0 +16,0 @@ };

@@ -77,3 +77,3 @@ /* globals $, ERROR */

this.waitForAlertToClose(alert);
} else if (alert.isNil() && alert.buttons().length > 0) {
} else if (!alert.isNil() && alert.buttons().length > 0) {
alert.buttons()[0].tap(); // first button is dismiss

@@ -80,0 +80,0 @@ this.waitForAlertToClose(alert);

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