testdriverai 7.8.0-canary.4 → 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.
Files changed (2) hide show
  1. package/docs/changelog.mdx +34 -0
  2. package/package.json +1 -1
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "testdriverai",
3
- "version": "7.8.0-canary.4",
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",