StorePropertyValueThis action stores the property of the specified object under the key name. The stored value can be retrieved using the key name. Some Android and iOS properties are not accessible. List of accessible properties for Android: "name","contentDescription","className","resourceId","text","enabled","checkable","checked","clickable","focusable","focused","longClickable","scrollable","selected","displayed" List of accessible properties for iOS: "name", "value", "type", "visible", "label", "enabled", "accessible", "rect", "frame", "accessibilityContainer", "wdName", "wdValue", "wdType", "wdVisible", "wdLabel", "wdEnabled", "wdAccessible", "wdRect", "wdFrame", "wdAccessibilityContainer" Input Parameters: ParameterName | Parameter Description | Mandatory | Data Type |
---|
Key | Variable in which the property value will be stored | Yes | String | Property | Property/attribute name whose value needs to be stored in "Key". This can be any accessible property of Android/iOS native object. | Yes | String |
Example: StorePropertyValue "key" "text"
|