froth-webdriverio-framework 7.0.119-dev1.0 → 7.0.119-dev1.2
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.
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
module.exports = (bsCaps) => {
|
|
2
2
|
const browserName = (bsCaps.browserName || 'chrome').toLowerCase();
|
|
3
|
-
//const browserVersion = bsCaps.browserVersion;
|
|
4
3
|
|
|
5
4
|
// Map browser names to their WebdriverIO services
|
|
6
5
|
const browserServiceMap = {
|
|
@@ -52,7 +51,7 @@ module.exports = (bsCaps) => {
|
|
|
52
51
|
}];
|
|
53
52
|
}
|
|
54
53
|
|
|
55
|
-
console.log(`🌐 Local execution configured for: ${browserName}
|
|
54
|
+
console.log(`🌐 Local execution configured for: ${browserName} using service: ${service}`);
|
|
56
55
|
|
|
57
56
|
return config;
|
|
58
57
|
};
|
package/package.json
CHANGED