@applitools/spec-driver-webdriver 1.5.1 → 1.5.3

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,35 @@
1
1
  # Changelog
2
2
 
3
+ ## [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)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * @applitools/utils bumped to 1.14.1
9
+ #### Bug Fixes
10
+
11
+ * 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))
12
+ * @applitools/logger bumped to 2.2.7
13
+
14
+ * @applitools/driver bumped to 1.24.3
15
+
16
+
17
+ ## [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)
18
+
19
+
20
+ ### Dependencies
21
+
22
+ * @applitools/utils bumped to 1.14.0
23
+ #### Features
24
+
25
+ * disable heartbeats whenever no tests are running ([#3344](https://github.com/Applitools-Dev/sdk/issues/3344)) ([b66d28a](https://github.com/Applitools-Dev/sdk/commit/b66d28a7a382f26b68de70c8633c027cb4bdf225))
26
+ * @applitools/logger bumped to 2.2.6
27
+
28
+ * @applitools/driver bumped to 1.24.2
29
+
30
+ * @applitools/test-server bumped to 1.3.5
31
+
32
+
3
33
  ## [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
34
 
5
35
 
@@ -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.1",
3
+ "version": "1.5.3",
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.24.1",
53
- "@applitools/utils": "1.13.0",
52
+ "@applitools/driver": "1.24.3",
53
+ "@applitools/utils": "1.14.1",
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.4",
59
+ "@applitools/test-server": "^1.3.5",
60
60
  "@applitools/test-utils": "^1.5.17",
61
61
  "@types/node": "^12.20.55",
62
62
  "nock": "^13.3.2",