testdriverai 7.8.0-canary.3 → 7.8.0-test.0
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/docs/changelog.mdx +34 -0
- package/docs/docs.json +3 -9
- package/package.json +3 -3
package/docs/changelog.mdx
CHANGED
|
@@ -5,6 +5,40 @@ rss: true
|
|
|
5
5
|
icon: "code-compare"
|
|
6
6
|
---
|
|
7
7
|
|
|
8
|
+
<Update label="v7.8.0-canary.4" description="March 2026" tags={["canary"]}>
|
|
9
|
+
✨ New features
|
|
10
|
+
|
|
11
|
+
- **[Cache API](/v7/cache)** — Speed up repeated test runs with screenshot-based caching. The system compares screenshots to cached results and reuses element positions when the screen hasn't changed, reducing AI calls.
|
|
12
|
+
- **[Custom error classes](/v7/errors)** — New `ElementNotFoundError` and `AIError` classes with rich debugging info including screenshot paths, pixel diffs, and detailed messages.
|
|
13
|
+
- **[Events system](/v7/events)** — Listen to SDK lifecycle events with wildcard support via `testdriver.emitter`. Uses colon-delimited namespaces (e.g., `command:start`, `log:*`).
|
|
14
|
+
- **[Provision API](/v7/provision)** — Launch browsers, desktop apps, VS Code, and Chrome extensions in your sandbox before tests run. Access via `testdriver.provision.*`.
|
|
15
|
+
- **[Redraw detection](/v7/redraw)** — Wait for screens to stabilize after interactions using two-phase detection with pixel comparison and z-score analysis.
|
|
16
|
+
- **[Screenshots API](/v7/screenshots)** — Capture screenshots manually with `testdriver.screenshot()` or automatically before/after every command.
|
|
17
|
+
|
|
18
|
+
📚 New examples
|
|
19
|
+
|
|
20
|
+
- [Exec output](/v7/examples/exec-output) — Capture and use output from PowerShell commands
|
|
21
|
+
- [Exec PowerShell](/v7/examples/exec-pwsh) — Generate dynamic data with PowerShell
|
|
22
|
+
- [Focus window](/v7/examples/focus-window) — Switch focus between application windows
|
|
23
|
+
|
|
24
|
+
<Note>
|
|
25
|
+
This release includes changes from v7.8.0-test.7 and v7.8.0-test.8.
|
|
26
|
+
</Note>
|
|
27
|
+
</Update>
|
|
28
|
+
|
|
29
|
+
<Update label="v7.8.0-test.8" description="March 2026" tags={["test"]}>
|
|
30
|
+
✨ New features
|
|
31
|
+
|
|
32
|
+
- Added new AI skills for cache, errors, events, provision, redraw, and screenshots
|
|
33
|
+
- Removed automated changelog generation from release workflow
|
|
34
|
+
</Update>
|
|
35
|
+
|
|
36
|
+
<Update label="v7.8.0-test.7" description="March 2026" tags={["test"]}>
|
|
37
|
+
🔧 Maintenance
|
|
38
|
+
|
|
39
|
+
- Version bump syntax improvements
|
|
40
|
+
</Update>
|
|
41
|
+
|
|
8
42
|
<Update label="v7.8.0-test.6" description="March 2026" tags={["test"]}>
|
|
9
43
|
🔧 Maintenance
|
|
10
44
|
|
package/docs/docs.json
CHANGED
|
@@ -56,7 +56,8 @@
|
|
|
56
56
|
"/v7/self-hosted",
|
|
57
57
|
"/v7/enterprise"
|
|
58
58
|
]
|
|
59
|
-
}
|
|
59
|
+
},
|
|
60
|
+
"/changelog"
|
|
60
61
|
]
|
|
61
62
|
},
|
|
62
63
|
{
|
|
@@ -122,14 +123,7 @@
|
|
|
122
123
|
"/v7/client",
|
|
123
124
|
"/v7/dashcam"
|
|
124
125
|
]
|
|
125
|
-
}
|
|
126
|
-
{
|
|
127
|
-
"group": "",
|
|
128
|
-
"pages": [
|
|
129
|
-
"/changelog"
|
|
130
|
-
]
|
|
131
|
-
}
|
|
132
|
-
]
|
|
126
|
+
} ]
|
|
133
127
|
},
|
|
134
128
|
{
|
|
135
129
|
"version": "v6",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "testdriverai",
|
|
3
|
-
"version": "7.8.0-
|
|
3
|
+
"version": "7.8.0-test.0",
|
|
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",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"start": "node bin/testdriverai.js",
|
|
38
38
|
"dev": "DEV=true node bin/testdriverai.js",
|
|
39
39
|
"debug": "DEV=true VERBOSE=true node bin/testdriverai.js",
|
|
40
|
-
"docs": "npm run docs:skills && cd docs && npx mint@latest dev",
|
|
41
|
-
"docs:dev": "cd docs && npx mint dev",
|
|
40
|
+
"docs": "npm run docs:skills && cd docs && npx mint@latest dev --port 3002",
|
|
41
|
+
"docs:dev": "cd docs && npx mint dev --port 3002",
|
|
42
42
|
"docs:build": "npm run docs:skills && cd docs && npx mint@latest build",
|
|
43
43
|
"docs:links": "node docs/_scripts/link-replacer.js",
|
|
44
44
|
"docs:skills": "node docs/_scripts/generate-skills.js",
|