@applitools/spec-driver-webdriver 1.0.49 → 1.0.51
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/CHANGELOG.md +33 -0
- package/dist/spec-driver.js +11 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,38 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.51](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-webdriver@1.0.50...js/spec-driver-webdriver@1.0.51) (2023-12-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/utils bumped to 1.7.0
|
|
9
|
+
#### Features
|
|
10
|
+
|
|
11
|
+
* add Eyes.getResults method ([#2046](https://github.com/applitools/eyes.sdk.javascript1/issues/2046)) ([#2069](https://github.com/applitools/eyes.sdk.javascript1/issues/2069)) ([4d263e1](https://github.com/applitools/eyes.sdk.javascript1/commit/4d263e19cb5e5708790a1a7ef90ff8f3eee50d91))
|
|
12
|
+
* @applitools/logger bumped to 2.0.14
|
|
13
|
+
|
|
14
|
+
* @applitools/driver bumped to 1.15.2
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [1.0.50](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-webdriver@1.0.49...js/spec-driver-webdriver@1.0.50) (2023-11-21)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Bug Fixes
|
|
21
|
+
|
|
22
|
+
* send devtool commands in chromium ([#2039](https://github.com/applitools/eyes.sdk.javascript1/issues/2039)) ([ff42043](https://github.com/applitools/eyes.sdk.javascript1/commit/ff42043c3d9f110eb7b22ab1a8448d77859923b4))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Dependencies
|
|
26
|
+
|
|
27
|
+
* @applitools/utils bumped to 1.6.3
|
|
28
|
+
#### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* don't throw error for missing configuration file ([#2034](https://github.com/applitools/eyes.sdk.javascript1/issues/2034)) ([d084e7b](https://github.com/applitools/eyes.sdk.javascript1/commit/d084e7bf6e1727e3969622b4e597881f18241eb3))
|
|
31
|
+
* @applitools/logger bumped to 2.0.13
|
|
32
|
+
|
|
33
|
+
* @applitools/driver bumped to 1.15.1
|
|
34
|
+
|
|
35
|
+
|
|
3
36
|
## [1.0.49](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-webdriver@1.0.48...js/spec-driver-webdriver@1.0.49) (2023-11-07)
|
|
4
37
|
|
|
5
38
|
|
package/dist/spec-driver.js
CHANGED
|
@@ -213,6 +213,17 @@ function toDriver(driver) {
|
|
|
213
213
|
ref: '',
|
|
214
214
|
}),
|
|
215
215
|
},
|
|
216
|
+
sendCommandAndGetResult: {
|
|
217
|
+
value: command('POST', '/session/:sessionId/chromium/send_command_and_get_result', {
|
|
218
|
+
command: 'sendCommandAndGetResult',
|
|
219
|
+
parameters: [
|
|
220
|
+
{ name: 'cmd', type: 'string', required: true, description: '' },
|
|
221
|
+
{ name: 'params', type: 'object', required: true, description: '' },
|
|
222
|
+
],
|
|
223
|
+
description: 'Send a command to the DevTools debugger and wait for the result.',
|
|
224
|
+
ref: '',
|
|
225
|
+
}),
|
|
226
|
+
},
|
|
216
227
|
});
|
|
217
228
|
attachedDriver.original = driver.original;
|
|
218
229
|
return attachedDriver;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/spec-driver-webdriver",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.51",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"webdriver",
|
|
6
6
|
"chrome devtools protocol",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"up:framework": "echo \"$(jq '.devDependencies.webdriver = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@applitools/driver": "1.15.
|
|
53
|
-
"@applitools/utils": "1.
|
|
52
|
+
"@applitools/driver": "1.15.2",
|
|
53
|
+
"@applitools/utils": "1.7.0",
|
|
54
54
|
"http-proxy-agent": "5.0.0",
|
|
55
55
|
"https-proxy-agent": "5.0.1"
|
|
56
56
|
},
|