testdriverai/testdriverai-testdriver:quickstart
Run your first computer-use test in minutes.
npx skills add https://github.com/testdriverai/testdriverai --skill testdriver:quickstart
<!-- Generated from quickstart.mdx. DO NOT EDIT. -->
TestDriver makes it easy to write automated computer-use tests for web browsers, desktop apps, and more. Follow the directions below to run your first TestDriver test.
<Tip><a href="https://discord.com/invite/cWDFW8DzPm" target="_blank" rel="noreferrer">Join our Discord</a> if you have any questions or need help getting started!</Tip>
<Tabs>
<Tab title="CLI" icon="terminal">
Get started quickly with the TestDriver CLI.
<Steps>
<Step title="Install TestDriver">
Use npx to quickly set up an example project:
npx testdriverai init
This will walk you through creating a new project folder, installing dependencies, setting up your API key, and configuring MCP for your preferred AI assistant (VS Code, Cursor, Claude Desktop, etc.).
</Step>
<Step title="Run Your Test">
TestDriver uses Vitest as the test runner. To run your test, use:
vitest run
This will spawn a sandbox, launch Chrome, and run the example test!
</Step>
</Steps>
</Tab>
<Tab title="GitHub Copilot" icon="github">
Use the TestDriver VS Code extension with GitHub Copilot for an AI-powered testing workflow.
<Card
title="Install TestDriver for VS Code"
icon="/images/content/extension/vscode.svg"
href="vscode:extension/testdriver.testdriver"
arrow
horizontal
>
</Card>
The extension provides one-click sign-in, project initialization, a live preview panel for watching tests execute, and MCP server configuration for GitHub Copilot.
Once installed, follow the full setup guide to configure MCP and start building tests with AI assistance:
<Card
title="VS Code + Copilot Setup Guide"
icon="arrow-right"
href="/v7/copilot/setup"
arrow
horizontal
>
Sign in, initialize your project, and configure MCP for GitHub Copilot.
</Card>
</Tab>
<Tab title="Manual" icon="wrench">
Install TestDriver and manually create the files yourself.
<Steps>
<Step title="Create a TestDriver Account">
You will need a TestDriver account to get an API key.
<Card
title="Get an API Key"
icon="user-plus"
href="https://console.testdriver.ai/team"
arrow
horizontal
>
Start with 60 free device minutes, no credit-card required!
</Card>
</Step>
<Step title="Install Dependencies">
Install Vitest and TestDriver as dev dependencies:
npm install --save-dev vitest testdriverai
</Step>
<Step title="Create a vitest.config.js File">
In your project root, create a vitest.config.js file with the following content:
import TestDriver from 'testdriverai/vitest';
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
testTimeout: 900000,
hookTimeout: 900000,
reporters: [
'default',
TestDriver()
],
setupFiles: ['testdriverai/vitest/setup'],
},
});
</Step>
<Step title="Create an Example Test File">
Add your API key to the example test file below and save it as test.mjs in your project root.
import { describe, expect, it } from "vitest";
// Import TestDriver from the vitest hooks
import { TestDriver } from "testdriverai/vitest/hooks";
describe("Google Search Example", () => {
it("should search for TestDriver", async (context) => {
// Create TestDriver instance - automatically connects to sandbox
const testdriver = TestDriver(context, {
apiKey: 'YOUR_API_KEY_HERE' // supply your API key here
});
// Provision Chrome browser with a URL
// This also starts dashcam recording automatically
await testdriver.provision.chrome({ url: "https://duckduckgo.com" });
// Find and interact with elements using natural language
const searchBox = await testdriver.find("DuckDuckGo search input field");
await searchBox.click();
// Type into the focused element
await testdriver.type("testdriver.ai");
// Press Enter to search
await testdriver.pressKeys(["enter"]);
// Assert something is visible on the page
const result = await testdriver.assert("search results are displayed");
expect(result).toBeTruthy();
});
});
</Step>
<Step title="Run Your Test">
TestDriver uses Vitest as the test runner. To run your test, use:
vitest run
This will spawn a sandbox, launch Chrome, and run the example test!
</Step>
</Steps>
</Tab>
</Tabs>
Take testdriverai/testdriverai-testdriver:quickstart from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npm, npx.
Without those the skill loads but fails at the first command.