Skip to main content

VerifyElementFound

Description

Verification command to check if an element exists.

Parameters

NameValueDescription
zoneString with one of the following values



* NATIVE

* WEB

* TEXT
Zones which define the way the element will be identified.
ElementStringIdentification of Element in the device screen.
IndexIntegerElement to find index

Usage

Command to check of element is found in screen. If not found throws and exception.

info

Replace <server> with the appropriate URL.

Example

VerifyElementFound

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

...
...
// Check if the element representing "text" = "login" is found in NATIVE zone.
seetest.verifyElementFound("NATIVE", "text=Login", 0);