Skip to main content

ElementSendText

Description

Send text to an element

Parameters

NameValueDescription
Zone* NATIVE

* WEB

* TEXT
Zones which define the way the element will be identified.
ElementElement Identifier as StringIdentification of Element in the device screen.



Identification can be XPATH or any other Appium Element Identifier
IndexElement index as IntegerIndex of Element
TextStringText to Send

Usage

info

Replace <server> with the appropriate URL.

Example

ElementSendText

DesiredCapabilities dc = new DesiredCapabilities();
driver = new AndroidDriver(new URL("<server>"), dc);
seetest = new SeeTestClient(driver);
dc.setCapability(MobileCapabilityType.UDID, "deviceid");

...
...

//show the list of recent apps
seetest.elementSendText("NATIVE", "//*[@accessibilityLabel='Username']" , 0 , "company");