Onboard your Playwright test suite
Playwright Check Suites are currently in Beta. Join the Slack community to get live updates on feature development and get help getting started. s
Use your existing Playwright tests as live, scheduled monitoring checks. No rewrites required. Define what to monitor using code, selecting the right tags and projects, and run your checks globally, using the Checkly CLI.
What’s a Playwright Check Suite?
A Playwright Check Suite lets you use your existing Playwright tests and projects for end-to-end monitoring with tailored monitoring strategies.
QuickStart Guide
Here’s how to get from zero to deployed checks in 5 minutes.
Before you begin
What you need:
- A checkly account
- A repository using Playwright for E2E tests and a Playwright configuration file.
Steps
1. Install the Checkly CLI
npm install --save-dev checkly
2. [Optional] If you’re using TypeScript
If you’re using TypeScript, install the dev dependencies jiti
and typescript
. These help the CLI bundle your typescript config and test files correctly.
npm install --save-dev jiti typescript
3. Use pw-test
to test in Checkly
Run your Playwright test suite using pw-test
.
pw-test
accepts both Checkly and Playwright command line arguments using the following syntax:
npx checkly pwtest --checky-flag -- --playwright-flag
. Use --
to seperate Checkly and Playwright flags.
The CLI command will then return a link to results, traces and more details:
> npx checkly pw-test -- --project=chromium
Parsing your Playwright project... ✅
Validating project resources... ✅
Bundling project resources... ✅
Running 1 checks in eu-west-1.
playwright.config.ts
✔ Playwright Test: --project=chromium (16s)
Detailed session summary at: https://chkly.link/l/linkhere
4. Convert tests to checks with pw-test
:
Using pw-test
with the --create-check
flag will create a checkly.config.ts
file if it doesn’t exist, and will add the new check. Afterwards, you can tweak the monitoring configuration for your check.
For example:
> npx checkly pw-test --create-check -- --project=chromium
⚠ No Checkly config file found
ℹ Creating a default checkly config file.
Creating Checkly check from Playwright test... ✅
Review the resulting check configuration in your checkly.config.ts
file and make sure to tweak locations and schedule as needed.
import { defineConfig } from 'checkly'
const config = defineConfig({
logicalId: 'my-repo-name',
projectName: 'my-repo-name',
checks: {
playwrightConfigPath: './playwright.config.ts',
playwrightChecks: [
{
logicalId: 'playwright-check-project-chromium', // tweak ID
name: 'Playwright Test: --project=chromium', // tweak name
testCommand: 'npx playwright test --project=chromium', // what we'll run as part of your check suite
locations: [
'eu-central-1', // add or change locations
],
frequency: 10, // a custom per-check frequency
},
],
frequency: 10, // a global default frequency
locations: [
'us-east-1', // a global default location
],
},
cli: {
runLocation: 'us-east-1', // where test and pw-test will run
},
})
export default config
5. Deploy your Playwright Check Suites
Once you are ready to start monitoring your applications with these checks, deploy your Playwright Check Suite into global monitoring with npx checkly deploy
.
npx checkly deploy
> You are about to deploy your project "playwright-check-suites" to account "Checkly E2E Prod". Do you want to continue? … yes
Successfully deployed project "playwright-check-suite" to account "Checkly E2E Prod".
Once deployed, your checks will run on a schedule and results will appear in your home dashboard.
6. Set up Alerts
Configure alert channels and alert groups to get notified when checks fail. You can receive alerts via email, Slack, webhooks, and more.
To set up alerts:
- Go to the Checkly dashboard.
- Navigate to Alert Channels to create a new channel.
- Assign channels to your project or individual checks.
Learn more in the alerting guide.
And all done!
Next steps
-
Learn more about how to use
pw-test
. -
Explore advanced configuration like private locations and environment variables.
-
Add or tweak your checks to monitor flows in different browsers or locations.
-
Set up alerting and integrations with your incident response tools.
-
Add TCP and URL monitors as well as API checks alongside your Playwright Check Suites.
→ Continue to the Playwright Check Suite CLI reference for all available options.
Last updated on August 4, 2025. You can contribute to this documentation by editing this page on Github