Skip to content

Commit 7317709

Browse files
authored
Update Appium.js - Issue #4047 - bstack:options'Prefix (#4053)
1 parent 154f2f7 commit 7317709

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/helper/Appium.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ class Appium extends Webdriver {
276276
const _convertedCaps = {};
277277
for (const [key, value] of Object.entries(capabilities)) {
278278
if (!key.startsWith(vendorPrefix.appium)) {
279-
if (key !== 'platformName') {
279+
if (key !== 'platformName' && key !== 'bstack:options') {
280280
_convertedCaps[`${vendorPrefix.appium}:${key}`] = value;
281281
} else {
282282
_convertedCaps[`${key}`] = value;

0 commit comments

Comments
 (0)