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

appium-uiauto

Package Overview
Dependencies
Maintainers
2
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.6.12 to 1.6.13

16

lib/command-proxy.js

@@ -103,2 +103,3 @@ // The Command Proxy relays UIAuto message to and from Appium. It is also the

var hasResult = typeof data.result !== "undefined";
var result;
if (hasResult && !curCommand) {

@@ -126,3 +127,8 @@ logger.debug("Got a result when we weren't expecting one! Ignoring it");

// this is the last row, unpack and respond to command
var result = JSON.parse(resultBuffer);
try {
result = JSON.parse(resultBuffer);
} catch (err) {
logger.error("Couldn't parse result buffer: " + err);
result = UNKNOWN_ERROR;
}
resultBuffer = "";

@@ -136,3 +142,9 @@ curCommand.cb(result);

} else {
curCommand.cb(JSON.parse(data.result));
try {
result = JSON.parse(data.result);
} catch (err) {
logger.error("Couldn't parse result buffer: " + err);
result = UNKNOWN_ERROR;
}
curCommand.cb(result);
curCommand = null;

@@ -139,0 +151,0 @@ }

2

package.json
{
"name": "appium-uiauto",
"version": "1.6.12",
"version": "1.6.13",
"description": "appium uiauto ios driver",

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

Sorry, the diff of this file is not supported yet

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