Set appium version
You can specify the appium versions for your tests running on BrowserStack. If the version is not specified, the default appium version is selected, depending on the OS and OS version. Make use of the capability browserstack.appium_version
to set the appium version:
Component | Description | Values |
---|---|---|
browserstack.appium_version |
Set the Appium version in your test script | Refer the table below |
Supported appium versions:
Platform | Appium Versions | Platform Versions |
---|---|---|
Android | 1.15.0 | All |
1.14.0 | All | |
1.13.0 | All | |
1.12.1 | All | |
1.11.1 | All | |
1.10.1 | All | |
1.9.1 | All | |
1.8.0 | All | |
1.7.2 | All | |
1.7.1 | All | |
1.6.5 (Default) | All | |
iOS | 1.16.0 | All except iOS 10 |
1.15.0 | All | |
1.14.0 (Default on iOS 12 & 13) | All | |
1.13.0 | All | |
1.12.1 | All | |
1.11.1 | All | |
1.10.1 | All | |
1.9.1 | All | |
1.8.0 | iOS 10, iOS 11 | |
1.7.2 | iOS 10, iOS 11 | |
1.7.0 (Default) | iOS 10, iOS 11 | |
1.6.5 | iOS 10, iOS 11 |
Example:
desired_caps = {
'browserstack.appium_version': '1.14.0'
}
DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
desiredCapabilities.setCapability("browserstack.appium_version", "1.14.0");
desired_cap = {
'browserstack.appium_version': '1.14.0'
}
var capabilities = {
'browserstack.appium_version': '1.14.0'
}
DesiredCapabilities capability = new DesiredCapabilities();
capability.SetCapability("browserstack.appium_version", "1.14.0");
$capabilities = new DesiredCapabilities();
$capabilities->setCapability("browserstack.appium_version", "1.14.0");
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
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!