@applitools/spec-driver-webdriver 1.5.2 → 1.5.4

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,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.5.4](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-webdriver@1.5.3...js/spec-driver-webdriver@1.5.4) (2026-01-11)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/driver bumped to 1.24.4
9
+ #### Bug Fixes
10
+
11
+ * scrolling element fallback logic | FLD-3959 ([#3442](https://github.com/Applitools-Dev/sdk/issues/3442)) ([36348b4](https://github.com/Applitools-Dev/sdk/commit/36348b46e6a127c99d4ccfa58bf386a8e414fb40))
12
+
13
+ ## [1.5.3](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-webdriver@1.5.2...js/spec-driver-webdriver@1.5.3) (2025-12-01)
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * @applitools/utils bumped to 1.14.1
19
+ #### Bug Fixes
20
+
21
+ * setup script compatibility with ESM | AD-11756 ([#3363](https://github.com/Applitools-Dev/sdk/issues/3363)) ([d1222f4](https://github.com/Applitools-Dev/sdk/commit/d1222f40a74ab62782bebeeb0cf899aac3f3d3b6))
22
+ * @applitools/logger bumped to 2.2.7
23
+
24
+ * @applitools/driver bumped to 1.24.3
25
+
26
+
3
27
  ## [1.5.2](https://github.com/Applitools-Dev/sdk/compare/js/spec-driver-webdriver@1.5.1...js/spec-driver-webdriver@1.5.2) (2025-11-19)
4
28
 
5
29
 
@@ -92,7 +92,9 @@ function getFrameworkMajorVersion() {
92
92
  }
93
93
  }
94
94
  function getWebDriver() {
95
- return getFrameworkMajorVersion() < 8 ? require('webdriver').default : require('webdriver');
95
+ var _a;
96
+ const webdriver = require('webdriver');
97
+ return (_a = webdriver.default) !== null && _a !== void 0 ? _a : webdriver;
96
98
  }
97
99
  // Exported for testing
98
100
  function getProxyConfiguration() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/spec-driver-webdriver",
3
- "version": "1.5.2",
3
+ "version": "1.5.4",
4
4
  "keywords": [
5
5
  "webdriver",
6
6
  "chrome devtools protocol",
@@ -49,8 +49,8 @@
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.24.2",
53
- "@applitools/utils": "1.14.0",
52
+ "@applitools/driver": "1.24.4",
53
+ "@applitools/utils": "1.14.1",
54
54
  "http-proxy-agent": "5.0.0",
55
55
  "https-proxy-agent": "5.0.1"
56
56
  },