Skip to content

Commit e590213

Browse files
authored
fix: AppiumTestDistribution/appium-device-farm requires 'platformName' (#3950)
1 parent edafb9e commit e590213

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Diff for: lib/helper/Appium.js

+2
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,8 @@ class Appium extends Webdriver {
273273
if (!key.startsWith(vendorPrefix.appium)) {
274274
if (key !== 'platformName') {
275275
_convertedCaps[`${vendorPrefix.appium}:${key}`] = value;
276+
} else {
277+
_convertedCaps[`${key}`] = value;
276278
}
277279
} else {
278280
_convertedCaps[`${key}`] = value;

0 commit comments

Comments
 (0)