froth-webdriverio-framework 6.0.15 → 6.0.17

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,13 +122,13 @@ function normalizeCapabilities(raw) {
122
122
  networkLogs: raw.networkLogs,
123
123
  interactiveDebugging: raw.interactiveDebugging,
124
124
  buildIdentifier: raw.buildIdentifier,
125
- // appiumVersion: "2.0",
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
128
  local: false
129
129
  }
130
130
  };
131
- }
131
+ }
132
132
  if (isWeb) {
133
133
 
134
134
  // --------------------------
@@ -145,7 +145,7 @@ function normalizeCapabilities(raw) {
145
145
  accessKey: Buffer.from(raw.accessKey, "base64").toString("utf8"),
146
146
  debug: raw.debug !== false,
147
147
  networkLogs: raw.networkLogs !== false,
148
- // sessionType: "automate",
148
+ // sessionType: "automate",
149
149
  projectName: process.env.BS_PROJECT_NAME || "Automation",
150
150
  buildName: process.env.FROTH_TESTOPS_BUILD_NAME || "Web Build",
151
151
  local: false
@@ -169,7 +169,13 @@ exports.config = deepmerge(commonconfig,
169
169
  // debug: true,
170
170
  // execArgv: ['--inspect-brk'],
171
171
  services: PLATFORM === 'browserstack'
172
- ? ['browserstack']
172
+ ? [
173
+ ['browserstack', {
174
+ browserstackLocal: false, // Prevent starting Local binary
175
+ opts: { forcelocal: false } // Ensure no fallback Local is triggered
176
+ // forcedStop: true // Kill any accidental extra process
177
+ }]
178
+ ]
173
179
  : PLATFORM === 'saucelabs'
174
180
  ? ['sauce']
175
181
  : [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "froth-webdriverio-framework",
3
- "version": "6.0.15",
3
+ "version": "6.0.17",
4
4
  "readme": "WebdriverIO Integration",
5
5
  "description": "WebdriverIO and BrowserStack App Automate",
6
6
  "license": "MIT",