@applitools/spec-driver-webdriver 1.4.5 → 1.5.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 +31 -0
- package/dist/spec-driver.js +1 -1
- package/package.json +4 -4
- package/types/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.5.1](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-webdriver@1.5.0...js/spec-driver-webdriver@1.5.1) (2025-11-09)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* @applitools/utils bumped to 1.13.0
|
|
9
|
+
#### Features
|
|
10
|
+
|
|
11
|
+
* restart cache and keepalive | FLD-3773 ([#3326](https://github.com/Applitools-Dev/sdk/issues/3326)) ([0fd12ca](https://github.com/Applitools-Dev/sdk/commit/0fd12ca703b4546560b563076a38f9ada24acc75))
|
|
12
|
+
* @applitools/logger bumped to 2.2.5
|
|
13
|
+
|
|
14
|
+
* @applitools/driver bumped to 1.24.1
|
|
15
|
+
|
|
16
|
+
* @applitools/test-server bumped to 1.3.4
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## [1.5.0](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-webdriver@1.4.5...js/spec-driver-webdriver@1.5.0) (2025-10-16)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* use performActions (W3C) instead of touchPerform (MJSONWP) ([#3223](https://github.com/Applitools-Dev/sdk/issues/3223)) ([d4e5da8](https://github.com/Applitools-Dev/sdk/commit/d4e5da8dc19ad3c3f76de8e762be867970df3dd2))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Dependencies
|
|
28
|
+
|
|
29
|
+
* @applitools/driver bumped to 1.24.0
|
|
30
|
+
#### Features
|
|
31
|
+
|
|
32
|
+
* use performActions (W3C) instead of touchPerform (MJSONWP) ([#3223](https://github.com/Applitools-Dev/sdk/issues/3223)) ([d4e5da8](https://github.com/Applitools-Dev/sdk/commit/d4e5da8dc19ad3c3f76de8e762be867970df3dd2))
|
|
33
|
+
|
|
3
34
|
## [1.4.5](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-webdriver@1.4.4...js/spec-driver-webdriver@1.4.5) (2025-09-16)
|
|
4
35
|
|
|
5
36
|
|
package/dist/spec-driver.js
CHANGED
|
@@ -507,7 +507,7 @@ async function visit(driver, url) {
|
|
|
507
507
|
}
|
|
508
508
|
exports.visit = visit;
|
|
509
509
|
async function performAction(driver, steps) {
|
|
510
|
-
return driver.
|
|
510
|
+
return driver.performActions(steps);
|
|
511
511
|
}
|
|
512
512
|
exports.performAction = performAction;
|
|
513
513
|
async function takeScreenshot(driver) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/spec-driver-webdriver",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"webdriver",
|
|
6
6
|
"chrome devtools protocol",
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
"up:framework": "echo \"$(jq '.devDependencies.webdriver = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@applitools/driver": "1.
|
|
53
|
-
"@applitools/utils": "1.
|
|
52
|
+
"@applitools/driver": "1.24.1",
|
|
53
|
+
"@applitools/utils": "1.13.0",
|
|
54
54
|
"http-proxy-agent": "5.0.0",
|
|
55
55
|
"https-proxy-agent": "5.0.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@applitools/api-extractor": "^1.2.22",
|
|
59
|
-
"@applitools/test-server": "^1.3.
|
|
59
|
+
"@applitools/test-server": "^1.3.4",
|
|
60
60
|
"@applitools/test-utils": "^1.5.17",
|
|
61
61
|
"@types/node": "^12.20.55",
|
|
62
62
|
"nock": "^13.3.2",
|
package/types/index.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ export function getCookies(driver: Driver<unknown>, context?: undefined | boolea
|
|
|
56
56
|
export function getTitle(driver: Driver<unknown>): Promise<string>;
|
|
57
57
|
export function getUrl(driver: Driver<unknown>): Promise<string>;
|
|
58
58
|
export function visit(driver: Driver<unknown>, url: string): Promise<void>;
|
|
59
|
-
export function performAction(driver: Driver<unknown>, steps: Array<
|
|
59
|
+
export function performAction(driver: Driver<unknown>, steps: Array<import('@applitools/driver').DriverAction>): Promise<void>;
|
|
60
60
|
export function takeScreenshot(driver: Driver<unknown>): Promise<string>;
|
|
61
61
|
export function getCurrentWorld(driver: Driver<unknown>): Promise<string>;
|
|
62
62
|
export function getWorlds(driver: Driver<unknown>): Promise<Array<string>>;
|