From f534f412f2576e4eae599b30a691e2cdf65b5f5d Mon Sep 17 00:00:00 2001 From: Fadi George Date: Thu, 16 Apr 2026 09:39:18 -0700 Subject: [PATCH] chore: bump BrowserStack Appium version to 3.2.0 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 --- appium/wdio.shared.conf.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appium/wdio.shared.conf.ts b/appium/wdio.shared.conf.ts index ecd9842..c8a7f71 100644 --- a/appium/wdio.shared.conf.ts +++ b/appium/wdio.shared.conf.ts @@ -21,7 +21,7 @@ const bstackOptions = { sessionName: process.env.SDK_TYPE || 'unknown', debug: true, networkLogs: true, - appiumVersion: '2.6', + appiumVersion: '3.2.0', }; export const sharedConfig: WebdriverIO.Config = {