@applitools/spec-driver-webdriver 1.4.4 → 1.5.0

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
@@ -1,5 +1,34 @@
1
1
  # Changelog
2
2
 
3
+ ## [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)
4
+
5
+
6
+ ### Features
7
+
8
+ * 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))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * @applitools/driver bumped to 1.24.0
14
+ #### Features
15
+
16
+ * 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))
17
+
18
+ ## [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)
19
+
20
+
21
+ ### Dependencies
22
+
23
+ * @applitools/logger bumped to 2.2.4
24
+ #### Bug Fixes
25
+
26
+ * remove duplicate tests on different sessions for same batch ([#3184](https://github.com/Applitools-Dev/sdk/issues/3184)) ([ede0d1f](https://github.com/Applitools-Dev/sdk/commit/ede0d1fd8018e14c19811903d78c273bce048f84))
27
+ * @applitools/driver bumped to 1.23.5
28
+
29
+ * @applitools/test-server bumped to 1.3.3
30
+
31
+
3
32
  ## [1.4.4](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-webdriver@1.4.3...js/spec-driver-webdriver@1.4.4) (2025-09-09)
4
33
 
5
34
 
@@ -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.touchPerform(steps.map(({ action, ...options }) => ({ action, options })));
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.4.4",
3
+ "version": "1.5.0",
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.23.4",
52
+ "@applitools/driver": "1.24.0",
53
53
  "@applitools/utils": "1.12.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.2",
59
+ "@applitools/test-server": "^1.3.3",
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<any>): Promise<void>;
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>>;