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.4.1 to 1.4.2

2

package.json
{
"name": "appium-uiauto",
"version": "1.4.1",
"version": "1.4.2",
"description": "appium uiauto ios driver",

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

@@ -24,3 +24,3 @@ /* globals $ */

it('should not return duplicate text fields', function () {
it('should not return duplicate UIATextField', function () {
return ctx.execFunc(

@@ -40,4 +40,20 @@ function () {

it('should not return duplicate UIASecureTextField', function () {
return ctx.execFunc(
function () {
rootPage.clickMenuItem('Text Fields');
$.delay(2000);
var cell = $('#Empty list').children('cell')[2];
$(cell).logTree();
var id = '' + $.getId(cell);
var res = $.getElementsByType('UIASecureTextField', id);
return res;
}
).then(function (res) {
res.should.have.length(1);
});
});
});
});

@@ -8,3 +8,3 @@ /* globals $ */

var isDuplicate = false;
if (type === 'textfield' || type === 'UIATextField') {
if (type.match(/textfield$/i)) {
// fixing duplicated text fields

@@ -11,0 +11,0 @@ $.each(current.elements(), function (idx, child) {

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