webdriverio 8.9.0 → 8.10.1
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.
- package/build/utils/actions/key.js +1 -1
- package/build/utils/index.js +1 -1
- package/package.json +11 -11
|
@@ -14,7 +14,7 @@ export default class KeyAction extends BaseAction {
|
|
|
14
14
|
// check capabilities first
|
|
15
15
|
platformName && platformName.match(/mac(\s)*os/i) ||
|
|
16
16
|
// if not set, expect we run locally
|
|
17
|
-
os.type().match(/darwin/i));
|
|
17
|
+
(this.instance.options.hostname?.match(/127\.0\.0\.1|local/i) && os.type().match(/darwin/i)));
|
|
18
18
|
if (value === Key.Ctrl) {
|
|
19
19
|
return isMac ? Key.Command : Key.Control;
|
|
20
20
|
}
|
package/build/utils/index.js
CHANGED
|
@@ -476,7 +476,7 @@ export const getAutomationProtocol = async (config) => {
|
|
|
476
476
|
*/
|
|
477
477
|
if (desiredCaps.deviceName || caps['appium:deviceName'] ||
|
|
478
478
|
caps['appium:platformVersion'] ||
|
|
479
|
-
|
|
479
|
+
caps['appium:app']) {
|
|
480
480
|
return 'webdriver';
|
|
481
481
|
}
|
|
482
482
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriverio",
|
|
3
3
|
"description": "Next-gen browser and mobile automation test framework for Node.js",
|
|
4
|
-
"version": "8.
|
|
4
|
+
"version": "8.10.1",
|
|
5
5
|
"homepage": "https://webdriver.io",
|
|
6
6
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -67,31 +67,31 @@
|
|
|
67
67
|
"@types/lodash.zip": "^4.2.6"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@types/node": "^
|
|
71
|
-
"@wdio/config": "8.
|
|
70
|
+
"@types/node": "^20.1.0",
|
|
71
|
+
"@wdio/config": "8.10.1",
|
|
72
72
|
"@wdio/logger": "8.6.6",
|
|
73
73
|
"@wdio/protocols": "8.8.1",
|
|
74
|
-
"@wdio/repl": "8.
|
|
75
|
-
"@wdio/types": "8.
|
|
76
|
-
"@wdio/utils": "8.
|
|
74
|
+
"@wdio/repl": "8.10.1",
|
|
75
|
+
"@wdio/types": "8.10.1",
|
|
76
|
+
"@wdio/utils": "8.10.1",
|
|
77
77
|
"archiver": "^5.0.0",
|
|
78
78
|
"aria-query": "^5.0.0",
|
|
79
79
|
"css-shorthand-properties": "^1.1.1",
|
|
80
80
|
"css-value": "^0.0.1",
|
|
81
|
-
"devtools": "8.
|
|
82
|
-
"devtools-protocol": "^0.0.
|
|
81
|
+
"devtools": "8.10.1",
|
|
82
|
+
"devtools-protocol": "^0.0.1138159",
|
|
83
83
|
"grapheme-splitter": "^1.0.2",
|
|
84
84
|
"import-meta-resolve": "^3.0.0",
|
|
85
85
|
"is-plain-obj": "^4.1.0",
|
|
86
86
|
"lodash.clonedeep": "^4.5.0",
|
|
87
87
|
"lodash.zip": "^4.2.0",
|
|
88
88
|
"minimatch": "^9.0.0",
|
|
89
|
-
"puppeteer-core": "
|
|
89
|
+
"puppeteer-core": "20.1.1",
|
|
90
90
|
"query-selector-shadow-dom": "^1.0.0",
|
|
91
91
|
"resq": "^1.9.1",
|
|
92
92
|
"rgb2hex": "0.2.5",
|
|
93
93
|
"serialize-error": "^8.0.0",
|
|
94
|
-
"webdriver": "8.
|
|
94
|
+
"webdriver": "8.10.1"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "0fc768bb7b2fe233877893260aec658facf6357f"
|
|
97
97
|
}
|