@applitools/spec-driver-puppeteer 1.4.22 → 1.4.24
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 +22 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.4.24](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-puppeteer@1.4.23...js/spec-driver-puppeteer@1.4.24) (2025-01-30)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/driver bumped to 1.20.4
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* handle device screen info extraction gracefully ([#2757](https://github.com/Applitools-Dev/sdk/issues/2757)) ([92d0118](https://github.com/Applitools-Dev/sdk/commit/92d0118137b77e49d780092d110973df8ed8b40c))
|
|
12
|
+
|
|
13
|
+
## [1.4.23](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-puppeteer@1.4.22...js/spec-driver-puppeteer@1.4.23) (2025-01-13)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* @applitools/snippets bumped to 2.6.4
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* remove side-eyes and fix code scanning issues ([#2712](https://github.com/Applitools-Dev/sdk/issues/2712)) ([cda98e4](https://github.com/Applitools-Dev/sdk/commit/cda98e4748c73cd97c11f646a2b5e26ff9416892))
|
|
22
|
+
* @applitools/driver bumped to 1.20.3
|
|
23
|
+
|
|
24
|
+
|
|
3
25
|
## [1.4.22](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-puppeteer@1.4.21...js/spec-driver-puppeteer@1.4.22) (2024-12-31)
|
|
4
26
|
|
|
5
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/spec-driver-puppeteer",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.24",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"puppeteer",
|
|
6
6
|
"chrome devtools protocol",
|
|
@@ -35,12 +35,13 @@
|
|
|
35
35
|
"lint": "run --top-level eslint '**/*.ts'",
|
|
36
36
|
"build": "run --top-level tspc --project ./tsconfig.build.json",
|
|
37
37
|
"test": "run --top-level mocha './test/**/*.spec.ts' --exit",
|
|
38
|
-
"setup": "yarn puppeteer:setup",
|
|
38
|
+
"setup": "[[ \"$APPLITOOLS_FRAMEWORK_VERSION\" != \"21\" ]] && yarn puppeteer:setup || yarn puppeteer:setup-chrome-only",
|
|
39
39
|
"puppeteer:setup": "PUPPETEER_PRODUCT=firefox node --eval 'import(\"puppeteer/install.mjs\").catch(() => import(\"puppeteer/install.js\"))'",
|
|
40
|
+
"puppeteer:setup-chrome-only": "puppeteer browsers install chrome",
|
|
40
41
|
"up:framework": "echo \"$(jq '.devDependencies.puppeteer = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
|
-
"@applitools/driver": "1.20.
|
|
44
|
+
"@applitools/driver": "1.20.4",
|
|
44
45
|
"@applitools/utils": "1.7.7"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|