Skip to main content

Quick Start

Get browser testing running in 2 minutes.

1. Install Extension

Install from VS Code Marketplace:

# Search "DebuggAI" in Extensions panel
# OR install directly:
code --install-extension debugg-ai.debugg-ai

2. Sign In

  1. Open VS Code
  2. Press Cmd+Shift+P → "DebuggAI: Sign In"
  3. Create account at debugg.ai

3. Create Your First Test

  1. Start your app: npm run dev (localhost:3000)
  2. Press Cmd+Alt+C
  3. Describe your test: "Test the login form with valid credentials"
  4. Watch AI create and run the test

4. View Results

What's Next?

Local CLI Usage (Optional)

Run the Debugg CLI locally against your app:

  1. Install and verify
pnpm add -g @debugg-ai/cli@latest  # or: npx @debugg-ai/cli@latest --help
debugg-ai --version
  1. Start your app locally (example Next.js)
pnpm build && pnpm start  # http://localhost:3000
  1. Execute a test run
export DEBUGGAI_API_KEY=your_api_key
debugg-ai test \
--api-key "$DEBUGGAI_API_KEY" \
--repo-path . \
--max-test-time 1800000 \
--server-timeout 120000

Tips

  • Use --pr <number> to scope tests to a pull request locally.
  • Point to a different backend with --base-url <url> if instructed.