froth-webdriverio-framework 6.0.4 → 6.0.5
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.
|
@@ -81,34 +81,34 @@ const commonconfig = {
|
|
|
81
81
|
if (process.env.PLATFORM === 'browserstack') {
|
|
82
82
|
/// console.log("capabilities:", capabilities);
|
|
83
83
|
console.log("====> BROWSERSTACK_LOCAL : " + process.env.BROWSERSTACK_LOCAL);
|
|
84
|
-
const isLocalEnabled = process.env.BROWSERSTACK_LOCAL === "true";
|
|
85
|
-
|
|
86
|
-
if (isLocalEnabled) {
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
}
|
|
106
|
-
else {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
}
|
|
84
|
+
// const isLocalEnabled = process.env.BROWSERSTACK_LOCAL === "true";
|
|
85
|
+
|
|
86
|
+
// if (isLocalEnabled) {
|
|
87
|
+
// bsLocal = new browserstack.Local();
|
|
88
|
+
// const localArgs = {
|
|
89
|
+
// key: process.env.BROWSERSTACK_ACCESS_KEY,
|
|
90
|
+
// forceLocal: true,
|
|
91
|
+
// localIdentifier: capabilities.localIdentifier || 'wdioLocal'
|
|
92
|
+
// };
|
|
93
|
+
|
|
94
|
+
// await new Promise((resolve, reject) => {
|
|
95
|
+
// bsLocal.start(localArgs, function (error) {
|
|
96
|
+
// if (error) return reject(error);
|
|
97
|
+
// console.log("====> BrowserStack Local started successfully.");
|
|
98
|
+
// resolve();
|
|
99
|
+
// });
|
|
100
|
+
// });
|
|
101
|
+
|
|
102
|
+
// // Add Local settings into capabilities dynamically
|
|
103
|
+
// capabilities['browserstack.local'] = true;
|
|
104
|
+
// capabilities['browserstack.localIdentifier'] = localArgs.localIdentifier || 'ExecuteLocal';
|
|
105
|
+
// }
|
|
106
|
+
// else {
|
|
107
|
+
// console.log("====> BROWSERSTACK_LOCAL not set. Skipping BrowserStack Local startup." + process.env.BROWSERSTACK_LOCAL);
|
|
108
|
+
// // Make sure no stale values from config remain
|
|
109
|
+
// delete capabilities['browserstack.local'];
|
|
110
|
+
// delete capabilities['browserstack.localIdentifier'];
|
|
111
|
+
// }
|
|
112
112
|
|
|
113
113
|
// capabilities.accessKey = Buffer.from(capabilities.accessKey, 'base64').toString('utf-8');
|
|
114
114
|
if (capabilities.platformName === 'android' || capabilities.platformName === 'ios') {
|
|
@@ -127,6 +127,7 @@ function normalizeCapabilities(rawCaps, sessionType, platform) {
|
|
|
127
127
|
consoleLogs: rawCaps.consoleLogs,
|
|
128
128
|
networkLogs: rawCaps.networkLogs,
|
|
129
129
|
debug: rawCaps.debug,
|
|
130
|
+
interactiveDebugging: rawCaps.interactiveDebugging,
|
|
130
131
|
buildIdentifier: rawCaps.buildIdentifier,
|
|
131
132
|
// userName: rawCaps.userName,
|
|
132
133
|
// accessKey: process.env.BROWSERSTACK_ACCESS_KEY
|
|
@@ -144,7 +145,7 @@ function normalizeCapabilities(rawCaps, sessionType, platform) {
|
|
|
144
145
|
'appium:deviceOrientation': rawCaps.deviceOrientation,
|
|
145
146
|
'appium:app': rawCaps.app || "",
|
|
146
147
|
'bstack:options': {
|
|
147
|
-
|
|
148
|
+
// appProfiling: rawCaps.appProfiling,
|
|
148
149
|
networkLogs: rawCaps.networkLogs,
|
|
149
150
|
debug: rawCaps.debug,
|
|
150
151
|
interactiveDebugging: rawCaps.interactiveDebugging,
|