ElementGetProperty
Description
Command to get a property of an element. It can retrieve all properties of the elements that are showing on the object spy as also controllers.
Parameters
Name | Value | Description |
---|---|---|
Zone | * NATIVE * WEB * TEXT | Zones which define the way the element will be identified. |
Element | String which identifies the Element | Identification of Element in the device screen. Example: Button, Text Box. |
Element index | Integer representing index of the Element | |
Property | String value of the Element Property | Property of Element. Example : Text |
Usage:
This command can be used get any property element.
info
Replace <server> with the appropriate URL.
- Public Continuous Testing Cloud - https://cloud.seetest.io/wd/hub/.
- Dedicated Continuous Testing Cloud environment - Your own domain. For example: https://company.experitest.com/wd/hub/
- On-premises Continuous Testing Cloud environment - Your designated URL. For example: https://company.com/wd/hub
Example
ElementGetProperty
DesiredCapabilities dc = new DesiredCapabilities();
driver = new AndroidDriver(new URL("<server>"), dc);
seetest = new SeeTestClient(driver);
dc.setCapability(MobileCapabilityType.UDID, "<deviceid>");
...
...
// Command will fetch the "enabled" property of Element "Contacts" if the Android Contacts App is opened and
// displayed in the Device screen
System.out.println(seetest.elementGetProperty("NATIVE", "//*[@text='Contacts']", 0, "enabled"));