froth-webdriverio-framework 6.0.14 → 6.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -122,12 +122,13 @@ function normalizeCapabilities(raw) {
|
|
|
122
122
|
networkLogs: raw.networkLogs,
|
|
123
123
|
interactiveDebugging: raw.interactiveDebugging,
|
|
124
124
|
buildIdentifier: raw.buildIdentifier,
|
|
125
|
-
|
|
125
|
+
// appiumVersion: "2.0",
|
|
126
126
|
projectName: process.env.BS_PROJECT_NAME || "Automation",
|
|
127
127
|
buildName: process.env.FROTH_TESTOPS_BUILD_NAME || "Mobile Build",
|
|
128
|
+
local: false
|
|
128
129
|
}
|
|
129
130
|
};
|
|
130
|
-
}
|
|
131
|
+
}
|
|
131
132
|
if (isWeb) {
|
|
132
133
|
|
|
133
134
|
// --------------------------
|
|
@@ -144,9 +145,10 @@ function normalizeCapabilities(raw) {
|
|
|
144
145
|
accessKey: Buffer.from(raw.accessKey, "base64").toString("utf8"),
|
|
145
146
|
debug: raw.debug !== false,
|
|
146
147
|
networkLogs: raw.networkLogs !== false,
|
|
147
|
-
|
|
148
|
+
// sessionType: "automate",
|
|
148
149
|
projectName: process.env.BS_PROJECT_NAME || "Automation",
|
|
149
150
|
buildName: process.env.FROTH_TESTOPS_BUILD_NAME || "Web Build",
|
|
151
|
+
local: false
|
|
150
152
|
}
|
|
151
153
|
};
|
|
152
154
|
}
|
|
@@ -167,7 +169,13 @@ exports.config = deepmerge(commonconfig,
|
|
|
167
169
|
// debug: true,
|
|
168
170
|
// execArgv: ['--inspect-brk'],
|
|
169
171
|
services: PLATFORM === 'browserstack'
|
|
170
|
-
? [
|
|
172
|
+
? [
|
|
173
|
+
['browserstack', {
|
|
174
|
+
browserstackLocal: false, // Prevent starting Local binary
|
|
175
|
+
opts: { local: false }, // Ensure no fallback Local is triggered
|
|
176
|
+
forcedStop: true // Kill any accidental extra process
|
|
177
|
+
}]
|
|
178
|
+
]
|
|
171
179
|
: PLATFORM === 'saucelabs'
|
|
172
180
|
? ['sauce']
|
|
173
181
|
: [],
|