@applitools/screenshoter 3.7.42 → 3.7.44

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/screenshoter",
3
- "version": "3.7.42",
3
+ "version": "3.7.44",
4
4
  "description": "Applitools universal screenshoter for web and native applications",
5
5
  "keywords": [
6
6
  "applitools",
@@ -67,17 +67,17 @@
67
67
  "postversion": "bongo postversion"
68
68
  },
69
69
  "dependencies": {
70
- "@applitools/image": "1.0.32",
71
- "@applitools/logger": "1.1.52",
72
- "@applitools/snippets": "2.4.19",
73
- "@applitools/utils": "1.3.35",
70
+ "@applitools/image": "1.0.33",
71
+ "@applitools/logger": "2.0.0",
72
+ "@applitools/snippets": "2.4.20",
73
+ "@applitools/utils": "1.3.36",
74
74
  "jpeg-js": "0.4.4",
75
75
  "png-async": "0.9.4"
76
76
  },
77
77
  "devDependencies": {
78
78
  "@applitools/bongo": "^3.0.3",
79
- "@applitools/driver": "^1.11.48",
80
- "@applitools/spec-driver-webdriverio": "^1.4.44",
79
+ "@applitools/driver": "^1.11.51",
80
+ "@applitools/spec-driver-webdriverio": "^1.5.0",
81
81
  "@applitools/test-utils": "^1.5.16",
82
82
  "appium": "^1.22.3",
83
83
  "chromedriver": "^101.0.0",
@@ -19,7 +19,7 @@ async function makeTakeViewportScreenshot(options) {
19
19
  return makeTakeMainContextScreenshot(options)
20
20
  }
21
21
  } catch (ignored) {}
22
- } else if (environment.browserName === 'Safari' && environment.browserVersion === '11') {
22
+ } else if (environment.browserName === 'Safari' && Number.parseInt(environment.browserVersion) === 11) {
23
23
  // safari 11 on macs takes full page screenshot
24
24
  return makeTakeSafari11Screenshot(options)
25
25
  }