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 +8 -0
- package/lib/vitest/hooks.mjs +0 -1
- package/package.json +1 -1
- package/sdk.js +2 -2
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
|
|
package/lib/vitest/hooks.mjs
CHANGED
package/package.json
CHANGED
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
|