Skip to main content

iOS Automation Name Config

info

Please note that this tool is classified as a Legacy tool. We recommend transitioning to our updated solutions to maintain optimal performance and security in your workflows. For more information on this matter, please reach out to technical support .

AutomationName Capability

Allows you to configure a specific iOS automation to be used by the current driver.

NamePossible Values
automationName<br/><br/>XCUITest / UIAutomation<br/><br/>



Default: XCUITest

Example (Java)

    IOSDriver<IOSElement> driver = null;

@Before
public void setup() throws MalformedURLException {
DesiredCapabilities dc = new DesiredCapabilities();

// automation name config
dc.setCapability(MobileCapabilityType.AUTOMATION_NAME, SeeTestIOSAutomationName.UI_AUTOMATION);

// ... other capabilities ...

driver = new IOSDriver(new URL("http://127.0.0.1:8889"), dc);
}