Skip to main content

Quickstart

New Project

1

Initialize

npx openqa init
This will prompt you to select a framework and configure your AI provider.
2

Choose Framework

Select from:
  • YAML — Simplest format for test cases
  • Playwright-BDD — Gherkin syntax with Playwright
  • Cucumber.js — Standard Cucumber with AI steps
3

Configure AI Provider

Choose your authentication method:
4

Write Your First Test

name: My First Test
tests:
  - name: Add todo item
    steps:
      - Navigate to "https://demo.playwright.dev/todomvc/"
      - Add a new todo item "Buy groceries"
      - Verify the todo appears in the list
5

Run

npm test

Existing Project?

Choose your integration: