@applitools/spec-driver-selenium 1.5.68 → 1.5.72
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 +48 -0
- package/dist/spec-driver.js +0 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.5.72](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-selenium@1.5.71...js/spec-driver-selenium@1.5.72) (2024-03-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/driver bumped to 1.16.5
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* trigger js release again ([1695f3d](https://github.com/Applitools-Dev/sdk/commit/1695f3d9967c7ab7b5d8c8637e86faa935a9047f))
|
|
12
|
+
|
|
13
|
+
## [1.5.71](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-selenium@1.5.70...js/spec-driver-selenium@1.5.71) (2024-03-18)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* @applitools/driver bumped to 1.16.4
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* trigger js release ([dbc9bf8](https://github.com/Applitools-Dev/sdk/commit/dbc9bf8da3ab5d93e570881ba2c61efa47a1b342))
|
|
22
|
+
|
|
23
|
+
## [1.5.70](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-selenium@1.5.69...js/spec-driver-selenium@1.5.70) (2024-03-17)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Dependencies
|
|
27
|
+
|
|
28
|
+
* @applitools/driver bumped to 1.16.3
|
|
29
|
+
#### Bug Fixes
|
|
30
|
+
|
|
31
|
+
* skip execution of getCurrentWorld and getWorlds when env var is set ([#2234](https://github.com/Applitools-Dev/sdk/issues/2234)) ([3a88602](https://github.com/Applitools-Dev/sdk/commit/3a886028b0437b73dae0474408d9bb74ba940dec))
|
|
32
|
+
* trigger build ([acb9c88](https://github.com/Applitools-Dev/sdk/commit/acb9c88161cf55e8b1e409425b5571d69a2e1d5c))
|
|
33
|
+
|
|
34
|
+
## [1.5.69](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-selenium@1.5.68...js/spec-driver-selenium@1.5.69) (2024-01-30)
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
### Dependencies
|
|
38
|
+
|
|
39
|
+
* @applitools/snippets bumped to 2.4.25
|
|
40
|
+
#### Bug Fixes
|
|
41
|
+
|
|
42
|
+
* losing root context after layout breakpoints reload ([#2113](https://github.com/applitools/eyes.sdk.javascript1/issues/2113)) ([afa1473](https://github.com/applitools/eyes.sdk.javascript1/commit/afa14735e5539ab0f79aa610e6ec1ea8989a5922))
|
|
43
|
+
* @applitools/driver bumped to 1.16.2
|
|
44
|
+
#### Bug Fixes
|
|
45
|
+
|
|
46
|
+
* losing root context after layout breakpoints reload ([#2113](https://github.com/applitools/eyes.sdk.javascript1/issues/2113)) ([afa1473](https://github.com/applitools/eyes.sdk.javascript1/commit/afa14735e5539ab0f79aa610e6ec1ea8989a5922))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
3
51
|
## [1.5.68](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-selenium@1.5.67...js/spec-driver-selenium@1.5.68) (2023-12-19)
|
|
4
52
|
|
|
5
53
|
|
package/dist/spec-driver.js
CHANGED
|
@@ -372,8 +372,6 @@ async function build(env) {
|
|
|
372
372
|
browserOptions.args.push('headless');
|
|
373
373
|
if (attach) {
|
|
374
374
|
browserOptions.debuggerAddress = attach === true ? 'localhost:9222' : attach;
|
|
375
|
-
if (browser !== 'firefox')
|
|
376
|
-
browserOptions.w3c = false;
|
|
377
375
|
}
|
|
378
376
|
desiredCapabilities[browserOptionsName] = browserOptions;
|
|
379
377
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/spec-driver-selenium",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.72",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"selenium",
|
|
6
6
|
"selenium-webdriver",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"up:framework": "echo \"$(jq '.devDependencies[\"selenium-webdriver\"] = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@applitools/driver": "1.16.
|
|
48
|
+
"@applitools/driver": "1.16.5",
|
|
49
49
|
"@applitools/utils": "1.7.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|