@applitools/eyes-selenium 4.65.0 → 4.65.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
@@ -8,6 +8,13 @@
8
8
 
9
9
 
10
10
 
11
+ ## 4.65.1 - 2023/4/5
12
+
13
+ ### Features
14
+ ### Bug fixes
15
+ - Fixed screenshot framing
16
+ - Fixed issue with css fetching for dom capture
17
+
11
18
  ## 4.65.0 - 2023/4/5
12
19
 
13
20
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/eyes-selenium",
3
- "version": "4.65.0",
3
+ "version": "4.65.1",
4
4
  "description": "Applitools Eyes SDK for Selenium WebDriver",
5
5
  "keywords": [
6
6
  "eyes-selenium",
@@ -61,7 +61,7 @@
61
61
  "postpublish": "bongo send-release-notification --name 'js_selenium_4'"
62
62
  },
63
63
  "dependencies": {
64
- "@applitools/eyes": "1.1.2",
64
+ "@applitools/eyes": "1.1.3",
65
65
  "@applitools/spec-driver-selenium": "1.5.37"
66
66
  },
67
67
  "devDependencies": {
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>;