This project aims to provide a number of features which are useful to teams that have large Playwright test suites and run Playwright at scale.
- Performance testing and measurement. Use existing Playwright test suites to measure and report Core Web Vitals of your web apps.
- Monitoring & observability. Connect your Playwright tests to CloudWatch, Datadog, Honeycomb, Lightstep, and more. You can then create dashboards and visualize trends. Coming soon
- Drop-in, no code changes required. Scalewright is designed to just work and require minimal extra configuration.
- Parallelize at scale. Parallelize and run test suites faster on AWS Lambda. Coming soon
βΉοΈ Disclaimer: Scalewright is an Artillery project. Scalewright is NOT affiliated with or endorsed by the Playwright team or Microsoft. We're sharing something we built with other power users of Playwright to help them do even more with Playwright.
This lets you use your Playwright test suites for performance testing and measurement.
Scalewright extends Playwright with automatic tracking of Web Vitals. The following metrics will be tracked by all page
actions in every test
block:
LCP
FID
CLS
FCP
TTFB
Learn more about Web Vitals on https://web.dev/vitals/
You can enable performance testing in two ways:
- Automatic instrumentation with
@scalewright/test
in your imports - Manual instrumentation with
@scalewright/performance-tracking
This method requires updating only a single line of code in your test suite.
Install @scalewright/test
alongside Playwright (i.e. usually as a devDependency
in a Node.js project):
npm install -D @scalewright/test
And then replace @playwright/test
with scalewright/test
in your imports:
// Before:
// import { test, expect } from '@playwright/test';
// After:
import { test, expect } from '@scalewright/test';
// Continue using the "test" helper as normal.
test('has title', async ({ page }) => {
await page.goto('https://playwright.dev/');
await expect(page).toHaveTitle(/Playwright/);
});
That's it. That will extend the built-in page
fixture under the hood (using the official Playwright fixture override API). Everything else is simply re-exported from @playwright/test
so things like expect
work as normal.
If you can't replace the imports for some reason, you can extend the page
fixture yourself.
Install alongside Playwright (i.e. usually as a devDependency
in a Node.js project):
npm install -D @scalewright/performance-tracking
And then extend the built-in page
fixture (uses Playwright's official fixture override API under the hood):
// Import Playwright Test runner's "test" helper as a different name so that
// we can extend it:
import { test as base, expect } from '@playwright/test';
// Extend it to track performance tracking and leaving everything else as-is:
import { withPerformanceTracking } from '@scalewright/performance-tracking';
const test = withPerformanceTracking(base);
// Use the "test" helper as normal
test('has title', async ({ page }) => {
await page.goto('https://playwright.dev/');
await expect(page).toHaveTitle(/Playwright/);
});
This will need to be done in every file that uses Playwright Test Runner.
Once enabled all performance metrics will be tracked automatically and added as custom annotations on each test. Those annotations can be viewed in the built-in HTML reporter:
This connects your Playwright tests to external monitoring/observability systems (such as Datadog, CloudWatch, Honeycomb or any other provider that supports StasD or OpenTelemetry protocols). Test metrics, traces, and events can then be sent over for visibility and analysis.
Coming soon - get notified for updates
Scale out your Playwright test suite on AWS Lambda for a massive speed up and reduction in running time. This requires no DevOps or infra work - a serverless "grid" is created on the fly in your own AWS account. This is orders of magnitude cheaper than cloud hosted platforms for running large Playwright tests.
Coming soon - get notified for updates
Post a message on Github Discussions board. We'd love to hear from you.
The best way to be notified is to Watch releases and discussions on our GitHub repo (https://github.com/scalewright/scalewright)
Hit Watch, then customize to only see new releases and announcements:
This project will aim to follow the release schedule of Playwright.
Each release will be versioned as follows: major.minor.patch-n
where major.minor.patch
will match a specific version of Playwright, and n
is a release number of Scalewright itself. To illustrate it with an example:
- Playwright release version
1.37.1
- Scalewright version
1.37.1-0
is published. The1.37.1
part tells you which release of Playwright this version of Scalewright works with.-0
means it's the first release of Scalewright for Playwright v1.37.1. - A user reports a bug in Scalewright, we fix it and publish Scalewright
v1.37.1-1
. This is now the latest release of Scalewright that is intended to work with Playwrightv1.37.1
.
Apache 2.0 (same as Playwright)