Documentation Index
Fetch the complete documentation index at: https://checklyhq.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Use environment variables to test different environments:
// In your test file
test('Homepage loads', async ({ page }) => {
const baseUrl = process.env.ENVIRONMENT_URL || 'https://example.com'
await page.goto(baseUrl)
// ... rest of your test
})
Run with environment variables:
npx checkly test --env ENVIRONMENT_URL="https://staging.example.com"