Run your first computer-use test in minutes.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add testdriverai/testdriverai --skill testdriver:quickstart --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Testdriver:Quickstart?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/testdriverai-testdriver-quickstart-testdriverai)More formats (shields.io, HTML) on the badges page.
---
name: testdriver:quickstart
description: Run your first computer-use test in minutes.
---
<!-- 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:
```bash
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:
```bash
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:
```bash
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:
```js vitest.config.js
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.
```js test.mjs highlight={9}
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:
```bash
vitest run
```
This will spawn a sandbox, launch Chrome, and run the example test!
</Step>
</Steps>
</Tab>
</Tabs>
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!