ElementGetText
Description
Use this command to get text from an element. The text is returned as a string.
Parameters
Name | Value | Description |
---|---|---|
Zone | String with following possible values * 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. |
index | Integer | Integer representing index of the element. |
Usage
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
ElementGetText
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
String text = seetest.elementGetText("NATIVE", "//*[@text='Hint:company']", 0);