@applitools/eyes-selenium 4.56.4 → 4.58.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 +26 -0
- package/package.json +15 -15
- package/types/index.d.ts +1362 -2005
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,32 @@
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
5
|
|
|
6
|
+
## 4.58.1 - 2021/11/18
|
|
7
|
+
|
|
8
|
+
- updated to @applitools/eyes-sdk-core@12.24.2 (from 12.24.0)
|
|
9
|
+
- updated to @applitools/spec-driver-selenium@1.3.0 (from 1.2.0)
|
|
10
|
+
- updated to @applitools/visual-grid-client@15.8.47 (from 15.8.44)
|
|
11
|
+
|
|
12
|
+
## 4.58.0 - 2021/11/10
|
|
13
|
+
|
|
14
|
+
- support cookies
|
|
15
|
+
- updated to @applitools/eyes-api@1.1.6 (from 1.1.5)
|
|
16
|
+
- updated to @applitools/eyes-sdk-core@12.24.0 (from 12.23.24)
|
|
17
|
+
- updated to @applitools/spec-driver-selenium@1.2.0 (from 1.1.1)
|
|
18
|
+
- updated to @applitools/visual-grid-client@15.8.44 (from 15.8.43)
|
|
19
|
+
|
|
20
|
+
## 4.57.0 - 2021/11/5
|
|
21
|
+
|
|
22
|
+
- updated to @applitools/eyes-api@1.1.5 (from 1.1.4)
|
|
23
|
+
- updated to @applitools/eyes-sdk-core@12.23.24 (from 12.23.18)
|
|
24
|
+
- updated to @applitools/visual-grid-client@15.8.43 (from 15.8.37)
|
|
25
|
+
|
|
26
|
+
## 4.56.5 - 2021/10/20
|
|
27
|
+
|
|
28
|
+
- updated to @applitools/eyes-sdk-core@12.23.18 (from 12.23.15)
|
|
29
|
+
- updated to @applitools/spec-driver-selenium@1.1.1 (from 1.1.0)
|
|
30
|
+
- updated to @applitools/visual-grid-client@15.8.37 (from 15.8.34)
|
|
31
|
+
|
|
6
32
|
## 4.56.4 - 2021/10/12
|
|
7
33
|
|
|
8
34
|
- move spec driver implementation to the separate package
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/eyes-selenium",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.58.1",
|
|
4
4
|
"description": "Applitools Eyes SDK for Selenium WebDriver",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eyes-selenium",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
},
|
|
24
24
|
"repository": {
|
|
25
25
|
"type": "git",
|
|
26
|
-
"url": "git://github.com/applitools/eyes.sdk.javascript1.git"
|
|
26
|
+
"url": "git://github.com/applitools/eyes.sdk.javascript1.git",
|
|
27
|
+
"directory": "packages/eyes-selenium"
|
|
27
28
|
},
|
|
28
29
|
"license": "SEE LICENSE IN LICENSE",
|
|
29
30
|
"author": {
|
|
@@ -43,9 +44,7 @@
|
|
|
43
44
|
],
|
|
44
45
|
"scripts": {
|
|
45
46
|
"lint": "eslint '**/*.ts'",
|
|
46
|
-
"build": "
|
|
47
|
-
"build:dist": "tsc",
|
|
48
|
-
"build:types": "api-extractor ./src/index.ts --out ./types/index.d.ts --external-modules selenium-webdriver",
|
|
47
|
+
"build": "ttsc",
|
|
49
48
|
"generate:tests": "coverage-tests generate https://raw.githubusercontent.com/applitools/sdk.coverage.tests/master/js/config.js --name 'eyes-selenium'",
|
|
50
49
|
"test": "yarn test:coverage",
|
|
51
50
|
"test:coverage": "yarn generate:tests && APPLITOOLS_BATCH_NAME='JS Coverage Tests: eyes-selenium' APPLITOOLS_BATCH_ID=$(uuidgen) XUNIT_FILE=coverage-test-report.xml mocha --config .mocharc.cvg.js",
|
|
@@ -66,17 +65,17 @@
|
|
|
66
65
|
}
|
|
67
66
|
},
|
|
68
67
|
"dependencies": {
|
|
69
|
-
"@applitools/eyes-api": "1.1.
|
|
70
|
-
"@applitools/eyes-sdk-core": "12.
|
|
71
|
-
"@applitools/spec-driver-selenium": "1.
|
|
72
|
-
"@applitools/visual-grid-client": "15.8.
|
|
68
|
+
"@applitools/eyes-api": "1.1.6",
|
|
69
|
+
"@applitools/eyes-sdk-core": "12.24.2",
|
|
70
|
+
"@applitools/spec-driver-selenium": "1.3.0",
|
|
71
|
+
"@applitools/visual-grid-client": "15.8.47"
|
|
73
72
|
},
|
|
74
73
|
"devDependencies": {
|
|
75
|
-
"@applitools/api-extractor": "1.
|
|
74
|
+
"@applitools/api-extractor": "1.2.3",
|
|
76
75
|
"@applitools/scripts": "1.0.1",
|
|
77
|
-
"@applitools/sdk-coverage-tests": "2.3.
|
|
78
|
-
"@applitools/sdk-release-kit": "0.13.
|
|
79
|
-
"@applitools/sdk-shared": "0.9.
|
|
76
|
+
"@applitools/sdk-coverage-tests": "2.3.16",
|
|
77
|
+
"@applitools/sdk-release-kit": "0.13.4",
|
|
78
|
+
"@applitools/sdk-shared": "0.9.9",
|
|
80
79
|
"@applitools/test-utils": "1.0.9",
|
|
81
80
|
"@types/selenium-webdriver": "^4.0.11",
|
|
82
81
|
"@typescript-eslint/eslint-plugin": "^4.15.1",
|
|
@@ -90,9 +89,10 @@
|
|
|
90
89
|
"husky": "^4.3.8",
|
|
91
90
|
"mocha": "^9.1.2",
|
|
92
91
|
"prettier": "^2.1.2",
|
|
93
|
-
"selenium-webdriver": "^4.0.0
|
|
92
|
+
"selenium-webdriver": "^4.0.0",
|
|
94
93
|
"spec-xunit-file": "0.0.1-3",
|
|
95
|
-
"
|
|
94
|
+
"ttypescript": "^1.5.12",
|
|
95
|
+
"typescript": "^4.5.1-rc"
|
|
96
96
|
},
|
|
97
97
|
"peerDependencies": {
|
|
98
98
|
"selenium-webdriver": ">=3.6.0"
|