Skip to content

Commit 664cd06

Browse files
eunjisongB0Y3R-AVA
authored andcommitted
QA - should handle iOS26 (#3598)
1 parent 0a3b4d3 commit 664cd06

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

packages/core-mobile/e2e-appium/wdio.conf.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ const allCaps = [
5151
{
5252
platformName: 'iOS',
5353
// 'appium:noReset': true,
54-
'appium:deviceName': 'iPhone 16 Pro',
54+
'appium:deviceName': 'iPhone 17 Pro',
5555
'appium:waitForIdleTimeout': 0,
5656
'appium:maxTypingFrequency': 30,
57-
'appium:platformVersion': '18.4',
57+
'appium:platformVersion': '26.0',
5858
'appium:automationName': 'xcuitest',
5959
'appium:app': iosPath,
6060
'appium:autoAcceptAlerts': true,

packages/core-mobile/scripts/bitrise/appium/androidInternalE2e.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ adb shell settings put global window_animation_scale 0
99
adb shell settings put global transition_animation_scale 0
1010
adb shell settings put global animator_duration_scale 0
1111

12+
# Install uiautomator2 driver for Appium 2.x+
13+
echo "Installing Appium uiautomator2 driver..."
14+
yarn appium driver install uiautomator2 || npx appium driver install uiautomator2 || true
15+
16+
# Verify installation
17+
yarn appium driver list || true
18+
1219
if [[ "$IS_SMOKE" == "true" ]]; then
1320
echo "Running ANDROID SMOKE tests"
1421
yarn appium:smokeAndroid

packages/core-mobile/scripts/bitrise/appium/iosInternalE2e.sh

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -ex
44
echo "Built app at: $BITRISE_APP_DIR_PATH"
55
ls -la "$BITRISE_APP_DIR_PATH" || true
66

7-
DEVICE_NAME="iPhone 16 Pro"
7+
DEVICE_NAME="iPhone 17 Pro"
88

99
SIM_STATUS=$(xcrun simctl list devices | grep "$DEVICE_NAME" | grep -o "Booted" || true)
1010

@@ -19,8 +19,14 @@ fi
1919
which node
2020
node -v
2121
yarn -v
22-
npx appium -v || true
23-
npx appium driver list || true
22+
23+
# Install xcuitest driver for Appium 2.x+
24+
echo "Installing Appium xcuitest driver..."
25+
yarn appium driver install xcuitest || npx appium driver install xcuitest || true
26+
27+
# Verify installation
28+
yarn appium -v || true
29+
yarn appium driver list || true
2430

2531
if [[ "$IS_SMOKE" == "true" ]]; then
2632
echo "Running iOS SMOKE tests"

0 commit comments

Comments
 (0)