testdriverai 7.3.42 → 7.3.44

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,3 +1,11 @@
1
+ ## [7.3.44](https://github.com/testdriverai/testdriverai/compare/v7.3.43...v7.3.44) (2026-02-26)
2
+
3
+
4
+
5
+ ## [7.3.43](https://github.com/testdriverai/testdriverai/compare/v7.3.42...v7.3.43) (2026-02-25)
6
+
7
+
8
+
1
9
  ## [7.3.42](https://github.com/testdriverai/testdriverai/compare/v7.3.41...v7.3.42) (2026-02-25)
2
10
 
3
11
 
@@ -121,7 +121,6 @@ function bufferConsoleToClients(args, level) {
121
121
  line: message,
122
122
  level: level || "log",
123
123
  source: "console",
124
- logFile: "console",
125
124
  });
126
125
  }
127
126
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.3.42",
3
+ "version": "7.3.44",
4
4
  "description": "Next generation autonomous AI agent for end-to-end testing of web & desktop",
5
5
  "main": "sdk.js",
6
6
  "types": "sdk.d.ts",
package/sdk.js CHANGED
@@ -1895,7 +1895,7 @@ class TestDriverSDK {
1895
1895
  // Add web log tracking with domain wildcard pattern, then start dashcam
1896
1896
  if (this.dashcamEnabled) {
1897
1897
  const domainPattern = this._getUrlDomainPattern(url);
1898
- await this.dashcam.addWebLog(domainPattern, "Web Logs");
1898
+ // await this.dashcam.addWebLog(domainPattern, "Web Logs");
1899
1899
 
1900
1900
  // Start dashcam recording after logs are configured
1901
1901
  if (!(await this.dashcam.isRecording())) {
@@ -2462,7 +2462,7 @@ with zipfile.ZipFile(io.BytesIO(zip_data)) as zf:
2462
2462
  const pattern = this._provisionedChromeUrl
2463
2463
  ? this._getUrlDomainPattern(this._provisionedChromeUrl)
2464
2464
  : "**";
2465
- await this.dashcam.addWebLog(pattern, "Web Logs");
2465
+ // await this.dashcam.addWebLog(pattern, "Web Logs");
2466
2466
  }
2467
2467
 
2468
2468
  // Start recording if not already recording