testdriverai 7.3.38 → 7.3.39
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 +4 -0
- package/package.json +1 -1
- package/sdk.js +1 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/sdk.js
CHANGED
|
@@ -1617,7 +1617,7 @@ class TestDriverSDK {
|
|
|
1617
1617
|
// Auto-screenshots configuration
|
|
1618
1618
|
// When enabled, automatically captures screenshots before/after each command
|
|
1619
1619
|
// Screenshots are saved to .testdriver/screenshots/<test>/ with descriptive names
|
|
1620
|
-
this.autoScreenshots = options.autoScreenshots
|
|
1620
|
+
this.autoScreenshots = options.autoScreenshots === true;
|
|
1621
1621
|
this._screenshotSequence = 0; // Counter for sequential screenshot naming
|
|
1622
1622
|
|
|
1623
1623
|
// Set up command methods that lazy-await connection
|