Skip to main content

AccessibilityActivate

Description

Use this command to activate the current element highlighted by the Accessibility Inspector. This command will perform an activate action on the current element highlighted by the Accessibility Inspector.

Parameters

None.

Usage

info

Replace <server> with the appropriate URL.

Java Example

Java example

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

...
...

seetest.accessibilityActivate();