From b061884d443889ee66b29f17efd79a1409e43af7 Mon Sep 17 00:00:00 2001 From: "mikhail.yesipchuk" Date: 2025年9月22日 14:44:19 +0300 Subject: [PATCH] fix:[iOS 17+] Appium should not overrride sauce:options cap with prefix --- lib/helper/Appium.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/helper/Appium.js b/lib/helper/Appium.js index fcb304263..c01841bab 100644 --- a/lib/helper/Appium.js +++ b/lib/helper/Appium.js @@ -275,7 +275,7 @@ class Appium extends Webdriver { const _convertedCaps = {} for (const [key, value] of Object.entries(capabilities)) { if (!key.startsWith(vendorPrefix.appium)) { - if (key !== 'platformName' && key !== 'bstack:options') { + if (key !== 'platformName' && key !== 'bstack:options' && key !== 'sauce:options') { _convertedCaps[`${vendorPrefix.appium}:${key}`] = value } else { _convertedCaps[`${key}`] = value

AltStyle によって変換されたページ (->オリジナル) /