Getting Started
Make sure to check out the requirements before you start.
The easiest way to get started with endform, is to run the endform cli from your playwright project directory.
npx endform@latest testMore ways to run your tests with Endform
Section titled “More ways to run your tests with Endform” Suite
Target
Run From
1. Set up your project
Navigate to your Playwright project root:
cd your-project2. Login to Endform
Authenticate with the Endform CLI:
npx endform@latest login3. Configure Playwright
Configure your playwright.config.ts to point to your remote server:
import { defineConfig } from '@playwright/test';
export default defineConfig({ use: { baseURL: process.env.BASE_URL || 'https://staging.yourapp.com', },});4. Run your tests
Execute your test suite with Endform:
npx endform@latest testView your results
Once your tests complete, results will appear in the Endform dashboard.