appium-uiauto
Advanced tools
Comparing version 1.6.10 to 1.6.11
{ | ||
"name": "appium-uiauto", | ||
"version": "1.6.10", | ||
"version": "1.6.11", | ||
"description": "appium uiauto ios driver", | ||
@@ -5,0 +5,0 @@ "main": "lib/main.js", |
@@ -89,4 +89,8 @@ /* globals $, env */ | ||
UIAElement.prototype.text = function () { | ||
var type = this.type(); | ||
var value = this.value(); | ||
if (type === "UIATextField") { | ||
return value; | ||
} | ||
var label = this.label(); | ||
var value = this.value(); | ||
if (label) return label; | ||
@@ -93,0 +97,0 @@ return value; |
Sorry, the diff of this file is not supported yet
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
13374545
3495