chore: bump BrowserStack Appium version to 3.2.0#31
Closed
fadi-george wants to merge 1 commit intomainfrom
Closed
Conversation
BrowserStack no longer supports Appium 2.6 for iOS apps, which was breaking all iOS E2E runs with BROWSERSTACK_INVALID_APPIUM_VERSION. Bumping to 3.2.0 pulls in XCUITest 10.23.2 and Flutter driver 3.5.0, both required to drive iOS 26 on iPhone 17. Appium 3 has some breaking changes (notably the wait plugin is dropped on iOS); flagging here in case downstream configs rely on it. Made-with: Cursor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
BrowserStack stopped accepting Appium
2.6for iOS apps, which broke every iOS E2E run (BROWSERSTACK_INVALID_APPIUM_VERSION). Bumping the shared capability to3.2.0.Example failing run on the Flutter SDK: https://github.com/OneSignal/OneSignal-Flutter-SDK/actions/runs/24521715454/job/71681579946
Details
appiumVersioninappium/wdio.shared.conf.tsfrom'2.6'to'3.2.0'.10.23.2, Flutter driver3.5.0, Flutter integration driver2.0.3, and UIAutomator27.0.0, which are needed to drive iOS 26 (iPhone 17) and the latest Android images. Ref: BrowserStack docs.Breaking changes to watch for
Appium 3 is a major bump. Worth flagging now so we can react if any spec starts misbehaving after merge:
waitplugin is not supported in 3.x on iOS per BrowserStack's matrix. Nothing in this repo references it today, but downstream SDK repos should double-check their local configs.Testing
tsc --noEmitinappium/passes.OneSignal/sdk-shared/.github/workflows/appium-e2e.yml@main. Plan to rerun the Flutter SDK E2E once this lands and confirm iOS goes green.Made with Cursor