appium-uiauto
Advanced tools
Comparing version 1.3.0 to 1.3.1
{ | ||
"name": "appium-uiauto", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "appium uiauto ios driver", | ||
@@ -5,0 +5,0 @@ "main": "lib/main.js", |
@@ -124,3 +124,8 @@ // The message route is the following: | ||
$.debug('evaluating ' + cmd); | ||
result = eval(cmd); | ||
try { | ||
result = eval(cmd); | ||
} catch (err) { | ||
$.error('Error during eval: ' + err.stack); | ||
throw err; | ||
} | ||
$.debug('evaluation finished'); | ||
@@ -127,0 +132,0 @@ } catch (possStaleEl) { |
@@ -152,3 +152,3 @@ /* globals $, errors */ | ||
if (path.search === "child") { | ||
nodeElems = nodeElems.concat(elems.childrenByType(nodes[j])); | ||
nodeElems = nodeElems.concat(elems.children(nodes[j])); | ||
} else if (path.search === "desc") { | ||
@@ -155,0 +155,0 @@ nodeElems = nodeElems.concat(elems.find(nodes[j])); |
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
13339296
3228