Quickstart
Create a feature, generate its Playwright tests with AI, and run them in a cloud sandbox — in about five minutes.
Last updated
Was this helpful?
Create a feature, generate its Playwright tests with AI, and run them in a cloud sandbox — in about five minutes.
This walkthrough uses the testvibe CLI. Every step has a raw-HTTP equivalent — see the API reference — and the same operations are available to AI tools through the MCP server.
With npm:
npm install -g testvibeOr without npm — download it straight from your TestVibe server (needs Node 20+):
curl -fsSL https://YOUR-TESTVIBE-SERVER/api/v1/install.sh | sh # macOS / Linux
iwr -useb https://YOUR-TESTVIBE-SERVER/api/v1/install.ps1 | iex # Windows PowerShellThen log in:
testvibe login --server https://YOUR-TESTVIBE-SERVER --key tvb_XXXXXXXX…login verifies the key against the server before saving it to ~/.testvibe/config.json. See the CLI reference for all install options.
A feature is desired behavior described in Gherkin:
Feature: Login Functionality
Scenario: Valid user signs in
Given I am on the login page
When I sign in with valid credentials
Then I see the inventory pagetestvibe features create "Login Functionality" --file login.featuretestvibe generate "Login Functionality" --watchAI generation runs in a cloud sandbox against your project's URL and takes a few minutes; --watch streams per-section progress until the feature reaches the generated status.
Generation consumes account credits — see Long-running operations for how dispatch + polling works.
Last updated
Was this helpful?
Was this helpful?
