testdriver-agent
How the TestDriver agent behaves on GitHub issues, pull requests, and @mentions
Record test execution with video and logs
$ npx -y skills add testdriverai/testdriverai --skill testdriver-dashcam --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/testdriver-dashcamContext preview
The summary Claude sees to decide when to auto-load this skill.
Record test execution with video and logs
name: testdriver:dashcam description: Record test execution with video and logs
<!-- Generated from dashcam.mdx. DO NOT EDIT. -->
Dashcam provides automatic video recording and log aggregation for your tests. It captures screen recordings, application logs, and test execution details that can be reviewed later.
Most presets automatically include Dashcam:
import { test } from 'vitest';
import { chrome } from 'testdriverai/presets';
test('my test', async (context) => {
const { testdriver, dashcam } = await chrome(context, {
url: 'https://example.com'
});
// Test executes with recording automatically
await testdriver.find('login button').then(el => el.click());
// Dashcam URL available after test
console.log('Replay:', dashcam.url);
});For more control, create a Dashcam instance directly:
import TestDriver from 'testdriverai';
import Dashcam from 'testdriverai/lib/core/Dashcam.js';
const client = await TestDriver.create({ os: 'linux' });
const dashcam = new Dashcam(client, {
apiKey: process.env.DASHCAM_API_KEY
});
await dashcam.auth();
await dashcam.start();
// Run your tests
const url = await dashcam.stop();
console.log('Replay URL:', url);Create a new Dashcam instance:
new Dashcam(client, options)
<ParamField path="client" type="TestDriver" required> TestDriver client instance </ParamField>
<ParamField path="options" type="object"> Configuration options
<Expandable title="options properties"> <ParamField path="apiKey" type="string"> Dashcam API key for authentication. Set via `TD_API_KEY` environment variable. </ParamField>
<ParamField path="autoStart" type="boolean" default={false}> Automatically start recording after authentication </ParamField>
<ParamField path="logs" type="array" default={[]}> Log configurations to add automatically </ParamField> </Expandable> </ParamField>
Authenticate with Dashcam service:
await dashcam.auth(apiKey)
<ParamField path="apiKey" type="string" optional> Override the API key set in constructor </ParamField>
**Returns:** `Promise<void>`
**Example:**
await dashcam.auth('your-api-key');Start recording:
await dashcam.start()
**Returns:** `Promise<void>`
**Example:**
await dashcam.start();
console.log('Recording started');Stop recording and retrieve replay URL:
await dashcam.stop()
**Returns:** `Promise<string|null>` - Replay URL if available
**Example:**
const url = await dashcam.stop();
if (url) {
console.log('Watch replay:', url);
} else {
console.log('No replay URL available');
}Track a log file in the recording:
await dashcam.addFileLog(path, name)
<ParamField path="path" type="string" required> Path to the log file </ParamField>
<ParamField path="name" type="string" required> Display name for the log in Dashcam </ParamField>
**Returns:** `Promise<void>`
**Example:**
// Linux/Mac
await dashcam.addFileLog('/tmp/app.log', 'Application Log');
// Windows
await dashcam.addFileLog('C:\\logs\\app.log', 'Application Log');Track application-specific logs:
await dashcam.addApplicationLog(application, name)
<ParamField path="application" type="string" required> Application name to track </ParamField>
<ParamField path="name" type="string" required> Display name for the log </ParamField>
**Returns:** `Promise<void>`
**Example:**
await dashcam.addApplicationLog('Google Chrome', 'Browser Logs');Track web request logs by URL pattern:
await dashcam.addWebLog(pattern, name)
<ParamField path="pattern" type="string" required> URL pattern to match (e.g., `"*example.com*"`) </ParamField>
<ParamField path="name" type="string" required> Display name for the log </ParamField>
**Returns:** `Promise<void>`
**Example:**
await dashcam.addWebLog('*example.com*', 'Web Logs');Generic method to add any type of log:
await dashcam.addLog(config)
<ParamField path="config" type="object" required> Log configuration
<Expandable title="config properties"> <ParamField path="name" type="string" required> Display name for the log </ParamField>
<ParamField path="type" type="string" required> Log type: `'file'`, `'application'`, or `'web'` </ParamField>
<ParamField path="path" type="string"> File path (required for type='file') </ParamField>
<ParamField path="application" type="string"> Application name (required for type='application') </ParamField>
<ParamField path="pattern" type="string"> URL pattern to match (required for type='web', e.g., `"*example.com*"`) </ParamField> </Expandable> </ParamField>
**Returns:** `Promise<void>`
**Example:**
await dashcam.addLog({
name: 'Test Output',
type: 'file',
path: '/tmp/test.log'
});
await dashcam.addLog({
name: 'Chrome Logs',
type: 'application',
application: 'Google Chrome'
});
await dashcam.addLog({
name: 'Web Logs',
type: 'web',
pattern: '*example.com*'
});Check if currently recording:
await dashcam.isRecording()
**Returns:** `Promise<boolean>` - True if recording is active
**Example:**
if (await dashcam.isRecording()) {
console.log('Recording in progress');
}Current recording state:
dashcam.recording // boolean
Configured API key:
dashcam.apiKey // string
Associated TestDriver client:
dashcam.client // TestD
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