Skip to main content
Transform your testing process with: Real Device Features, Company-wide Licences, & App Percy

Select an automation engine

You can override the default automation engine used to execute your appium tests on BrowserStack. In order to change Appium’s automation engine, use the automationName capability.

Capability OS Values
automationName Android UIAutomator2, Appium, Flutter(for flutter apps)
Default: UIAutomator2
  iOS XCUITest, Flutter(for flutter apps)
Default: XCUITest

If you are using BrowserStack SDK, you can set the following capabilities in the browserstack.yml file:

browserstack.yml
Copy icon Copy snippet

BrowserStack SDK is a plug-n-play solution that takes care of all the integration steps for you. Using the BrowserStack SDK is the recommended integration method for your project. To know more, visit the SDK core concepts page.

DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
desiredCapabilities.setCapability("automationName", "Appium");
var capabilities = {
	'automationName': 'Appium'
}
DesiredCapabilities capability = new DesiredCapabilities();
capability.SetCapability("automationName", "Appium");
$capabilities = new DesiredCapabilities();
$capabilities->setCapability("automationName", "Appium");
desired_cap = {
	'automationName': 'Appium'
}
desired_caps = {
    'automationName': 'Appium'
}

We're sorry to hear that. Please share your feedback so we can do better

Contact our Support team for immediate help while we work on improving our docs.

We're continuously improving our docs. We'd love to know what you liked






Thank you for your valuable feedback

Is this page helping you?

Yes
No

We're sorry to hear that. Please share your feedback so we can do better

Contact our Support team for immediate help while we work on improving our docs.

We're continuously improving our docs. We'd love to know what you liked






Thank you for your valuable feedback!

Talk to an Expert
Download Copy