Description
Send text to an element
Parameters
Name | Value | Description |
---|---|---|
Zone |
| Zones which define the way the element will be identified. |
Element | Element Identifier as String | Identification of Element in the device screen. Identification can be XPATH or any other Appium Element Identifier |
Index | Element index as Integer | Index of Element |
Text | String | Text to Send |
Usage
Set Experitest Url
Please make sure you replace <EXPERITEST_URL> with appropriate URL in the sample code below.
- For SeeTest cloud, EXPERITEST_URL needs to be https://cloud.seetest.io/wd/hub/
- For Dedicated Experitest Lab, EXPERITEST_URL needs to be your own domain. e.g - https://company.experitest.com
Example
ElementSendText
DesiredCapabilities dc = new DesiredCapabilities(); driver = new AndroidDriver(new URL("<EXPERITEST_URL>"), dc); seetest = new SeeTestClient(driver); dc.setCapability(MobileCapabilityType.UDID, "deviceid"); ... ... //show the list of recent apps seetest.elementSendText("NATIVE", "//*[@accessibilityLabel='Username']" , 0 , "company");