@applitools/spec-driver-puppeteer 1.3.1 → 1.3.3
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 +20 -0
- package/dist/spec-driver.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.3.3](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-puppeteer@1.3.2...js/spec-driver-puppeteer@1.3.3) (2023-12-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/driver bumped to 1.16.0
|
|
9
|
+
#### Features
|
|
10
|
+
|
|
11
|
+
* add set of env variables to skip/ignore some optional automations ([#2097](https://github.com/applitools/eyes.sdk.javascript1/issues/2097)) ([bd3b08c](https://github.com/applitools/eyes.sdk.javascript1/commit/bd3b08c3d2997eb98d545b308a1f15501192178e))
|
|
12
|
+
|
|
13
|
+
## [1.3.2](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-puppeteer@1.3.1...js/spec-driver-puppeteer@1.3.2) (2023-12-12)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* @applitools/driver bumped to 1.15.3
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* layout breakpoints reload and lazy load ([#2073](https://github.com/applitools/eyes.sdk.javascript1/issues/2073)) ([ab2c49e](https://github.com/applitools/eyes.sdk.javascript1/commit/ab2c49ea1ecff3fef337637a83aa5bef755a7b01))
|
|
22
|
+
|
|
3
23
|
## [1.3.1](https://github.com/applitools/eyes.sdk.javascript1/compare/js/spec-driver-puppeteer@1.3.0...js/spec-driver-puppeteer@1.3.1) (2023-12-05)
|
|
4
24
|
|
|
5
25
|
|
package/dist/spec-driver.js
CHANGED
|
@@ -276,6 +276,7 @@ async function build(env) {
|
|
|
276
276
|
args: ['--no-sandbox', '--disable-setuid-sandbox', '--disable-dev-shm-usage', '--disable-gpu', ...args],
|
|
277
277
|
ignoreDefaultArgs: ['--hide-scrollbars'],
|
|
278
278
|
product: browser,
|
|
279
|
+
protocol: 'cdp',
|
|
279
280
|
};
|
|
280
281
|
if (proxy) {
|
|
281
282
|
options.proxy = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/spec-driver-puppeteer",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.3",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"puppeteer",
|
|
6
6
|
"chrome devtools protocol",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"up:framework": "echo \"$(jq '.devDependencies.puppeteer = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@applitools/driver": "1.
|
|
43
|
+
"@applitools/driver": "1.16.0",
|
|
44
44
|
"@applitools/utils": "1.7.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|