@applitools/eyes-webdriverio 5.43.0 → 5.43.1

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 CHANGED
@@ -10,6 +10,13 @@
10
10
 
11
11
 
12
12
 
13
+ ## 5.43.1 - 2023/4/5
14
+
15
+ ### Features
16
+ ### Bug fixes
17
+ - Fixed screenshot framing
18
+ - Fixed issue with css fetching for dom capture
19
+
13
20
  ## 5.43.0 - 2023/4/4
14
21
 
15
22
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-webdriverio",
3
- "version": "5.43.0",
3
+ "version": "5.43.1",
4
4
  "description": "Applitools Eyes SDK for WebdriverIO",
5
5
  "keywords": [
6
6
  "eyes-webdriverio",
@@ -112,21 +112,21 @@
112
112
  "postpublish": "bongo send-release-notification --name 'js_wdio_5'"
113
113
  },
114
114
  "dependencies": {
115
- "@applitools/eyes": "1.1.2",
115
+ "@applitools/eyes": "1.1.3",
116
116
  "@applitools/spec-driver-webdriverio": "1.4.35"
117
117
  },
118
118
  "devDependencies": {
119
119
  "@applitools/api-extractor": "1.2.12",
120
120
  "@applitools/bongo": "^3.0.3",
121
121
  "@applitools/sdk-coverage-tests": "^3.0.0",
122
- "@applitools/test-utils": "1.5.15",
122
+ "@applitools/test-utils": "1.5.16",
123
123
  "@types/node": "^16.18.14",
124
124
  "@wdio/cli": "^8.3.9",
125
125
  "@wdio/dot-reporter": "^8.3.0",
126
126
  "@wdio/globals": "^8.3.9",
127
127
  "@wdio/local-runner": "^8.3.9",
128
128
  "@wdio/mocha-framework": "^8.3.0",
129
- "chromedriver": "^109.0.0",
129
+ "chromedriver": "^111.0.0",
130
130
  "expect-webdriverio": "^4.0.1",
131
131
  "geckodriver": "^1.20.0",
132
132
  "webdriverio": "^8.3.9"
package/types/index.d.ts CHANGED
@@ -1418,7 +1418,7 @@ export class TestResults implements Required<TestResultsPlain> {
1418
1418
  getNoneMatches(): number;
1419
1419
  get url(): string;
1420
1420
  getUrl(): string;
1421
- get server(): { serverUrl: string; apiKey: string; proxy?: undefined | { url: string; username?: undefined | string; password?: undefined | string; }; agentId?: undefined | string; };
1421
+ get server(): { serverUrl: string; apiKey: string; agentId?: undefined | string; proxy?: undefined | { url: string; username?: undefined | string; password?: undefined | string; }; };
1422
1422
  get keepIfDuplicate(): boolean;
1423
1423
  isPassed(): boolean;
1424
1424
  delete(): Promise<void>;