@applitools/spec-driver-selenium 1.5.96 → 1.5.97

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,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.97](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-selenium@1.5.96...js/spec-driver-selenium@1.5.97) (2025-03-30)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/utils bumped to 1.8.0
9
+ #### Features
10
+
11
+ * allow sending callback functions to waitBeforeCapture ([#2780](https://github.com/Applitools-Dev/sdk/issues/2780)) ([4caa2e8](https://github.com/Applitools-Dev/sdk/commit/4caa2e8ae055d3dd48164eeceaa4c691eeadcdd4))
12
+ * @applitools/logger bumped to 2.1.2
13
+
14
+ * @applitools/driver bumped to 1.21.0
15
+ #### Features
16
+
17
+ * allow sending callback functions to waitBeforeCapture ([#2780](https://github.com/Applitools-Dev/sdk/issues/2780)) ([4caa2e8](https://github.com/Applitools-Dev/sdk/commit/4caa2e8ae055d3dd48164eeceaa4c691eeadcdd4))
18
+
19
+
20
+
21
+
3
22
  ## [1.5.96](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-selenium@1.5.95...js/spec-driver-selenium@1.5.96) (2025-02-26)
4
23
 
5
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/spec-driver-selenium",
3
- "version": "1.5.96",
3
+ "version": "1.5.97",
4
4
  "keywords": [
5
5
  "selenium",
6
6
  "selenium-webdriver",
@@ -46,8 +46,8 @@
46
46
  "up:framework": "echo \"$(jq '.devDependencies[\"selenium-webdriver\"] = $ENV.APPLITOOLS_FRAMEWORK_VERSION' ./package.json)\" > ./package.json"
47
47
  },
48
48
  "dependencies": {
49
- "@applitools/driver": "1.20.5",
50
- "@applitools/utils": "1.7.8"
49
+ "@applitools/driver": "1.21.0",
50
+ "@applitools/utils": "1.8.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@applitools/api-extractor": "^1.2.22",
package/types/index.d.ts CHANGED
@@ -65,5 +65,6 @@ export type PrimarySpecType = {
65
65
  element: Element;
66
66
  selector: Selector;
67
67
  secondary: never;
68
+ userFunction: unknown;
68
69
  };
69
70
  export type SpecDriver = import('@applitools/driver').SpecDriver<PrimarySpecType>;