testdriver-agent
How the TestDriver agent behaves on GitHub issues, pull requests, and @mentions
Wait for the screen to stabilize after interactions
$ npx -y skills add testdriverai/testdriverai --skill testdriver-redraw --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/testdriver-redrawContext preview
The summary Claude sees to decide when to auto-load this skill.
Wait for the screen to stabilize after interactions
name: testdriver:redraw description: Wait for the screen to stabilize after interactions
<!-- Generated from redraw.mdx. DO NOT EDIT. -->
The redraw system waits for the screen to stabilize after an interaction before continuing. It detects when animations, page loads, and network requests have settled, preventing actions from being performed on a changing screen.
<Note> **Redraw is disabled by default since v7.3.** Enable it explicitly if your tests interact with applications that have significant animations or loading states. </Note>
Redraw uses a **two-phase detection** approach:
1. **Change Detection** — Compare the current frame to the initial screenshot taken right after the action. If the pixel diff exceeds 0.1%, the screen has changed. 2. **Stability Detection** — Compare consecutive frames using z-score analysis. When the diff between frames drops below 0.1% or the z-score is negative (current diff is below average), the screen has settled.
The screen is considered **settled** when both phases complete: the screen changed from the initial state AND consecutive frames are now stable.
flowchart TD
A[Action performed] --> B{Phase 1: Change Detection\ndiffFromInitial > 0.1%?}
B -- "Yes (screen changed)" --> C{Phase 2: Stability\nz-score < 0 or\ndiffPercent < 0.1%?}
C -- "Yes (frames stable)" --> D[Screen settled ✓]
B -- "No (waiting...)" --> B
C -- "No (waiting...)" --> CThe system polls at **500ms intervals**, comparing screenshot frames. This reduces WebSocket traffic while still providing responsive detection.
Uses [pixelmatch](https://github.com/mapbox/pixelmatch) for per-pixel comparison with a threshold of `0.1` for pixel sensitivity. A frame diff above **0.1% of total pixels** indicates the screen has changed.
Screen stability uses statistical analysis of the last **10 measurements**:
1. Calculate the mean and standard deviation of consecutive frame diffs 2. Compute the z-score: `(currentDiff - mean) / stddev` 3. Screen is stable when `diffPercent < 0.1%` or `z-score < 0` (current diff is below the average)
This approach adapts to the specific animation patterns of your application rather than using a fixed threshold.
Each command type has a specific redraw timeout:
| Command | Timeout | Reason | |---------|---------|--------| | `click` | 5000ms | Page navigations, modal openings | | `hover` (within click) | 5000ms | Same as click | | `hover` (standalone) | 2500ms | Tooltip animations | | `scroll` | 5000ms | Lazy-loaded content | | `type` | 5000ms | Autocomplete, validation | | `pressKeys` | 5000ms | Keyboard shortcuts may trigger changes | | `focusApplication` | 1000ms | Window focus animations |
If the timeout is reached before the screen settles, the command continues anyway. The timeout event is available via the `redraw:complete` event.
const testdriver = new TestDriver({
// Shorthand: enable/disable
redraw: true, // enable with defaults
redraw: false, // disable (default since v7.3)
// Full configuration
redraw: {
enabled: true,
screenRedraw: true, // enable screen pixel diff detection
networkMonitor: false, // enable network settling detection
},
});<ParamField path="redraw" type="RedrawConfig | boolean" default={false}> Redraw configuration. Pass `true`/`false` for shorthand, or an object for fine-grained control.
<Expandable title="properties"> <ParamField path="enabled" type="boolean" default={false}> Enable or disable the redraw system. Default changed to `false` in v7.3. </ParamField>
<ParamField path="screenRedraw" type="boolean" default={true}> Enable pixel-diff-based screen change detection. If both `screenRedraw` and `networkMonitor` are `false`, redraw auto-disables. </ParamField>
<ParamField path="networkMonitor" type="boolean" default={false}> Enable network traffic monitoring for settling detection. Monitors WebSocket traffic on the sandbox to detect when network activity subsides. </ParamField> </Expandable> </ParamField>
Override redraw settings for individual commands:
// Enable redraw for a specific click
await testdriver.find('load more').click({
redraw: { enabled: true },
});
// Disable redraw for a fast interaction
await testdriver.find('checkbox').click({
redraw: false,
});When `networkMonitor` is enabled, the system also monitors sandbox network traffic:
The final settling condition requires **both** screen AND network to be settled (when both are enabled).
The redraw system emits events through the SDK emitter. See [Events](/events) for the full event reference.
| Event | Description | |---|---| | `redraw:status` | Emitted on each poll with current screen diff, network stats, and timeout info | | `redraw:complete` | Emitted when redraw resolves (settled or timed out) |
testdriver.emitter.on('redraw:status', (status) => {
console.log(`Screen: ${status.redraw.text}`);
console.log(`Network: ${status.network.text}`);
console.log(`Timeout: ${status.timeout.text}`);
});
testdriver.emitter.on('redraw:complete', (result) => {
if (result.isTimeout) {
console.warn(`Redraw timed out after ${result.timeElapsed}ms`);
} else {
console.log(`Screen settled in ${result.timeElapsed}ms`);
}
});**Enable redraw when:**
Repo: testdriverai/testdriverai
How the TestDriver agent behaves on GitHub issues, pull requests, and @mentions
Deploy TestDriver on your AWS infrastructure using CloudFormation
How TestDriver learns your app and caches what it discovers for instant, deterministic replays