> ## Documentation Index
> Fetch the complete documentation index at: https://docs.testdriver.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Quick Start

> Run your first computer-use test in minutes.

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 theme={null}
        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 theme={null}
        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="https://mintcdn.com/testdriver/XQpwml52qitCoxm7/images/content/extension/vscode.svg?fit=max&auto=format&n=XQpwml52qitCoxm7&q=85&s=26e6b26485e2ac68553c6a680ef1833e" href="vscode:extension/testdriver.testdriver" arrow horizontal width="100" height="100" data-path="images/content/extension/vscode.svg" />

    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 theme={null}
        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 theme={null}
        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} theme={null}
        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 theme={null}
        vitest run
        ```

        This will spawn a sandbox, launch Chrome, and run the example test!
      </Step>
    </Steps>
  </Tab>
</Tabs>
