Running at Scale
Execute your tests across different browsers and operating systems in the cloud.
1. GitHub Actions
Run tests on every commit automatically.
2. Service Providers
Connect to BrowserStack, LambdaTest, or Playwright's own cloud infrastructure.
javascript
// playwright.config.js
module.exports = {
projects: [
{ name: 'Chromium', use: { browserName: 'chromium' } },
{ name: 'Firefox', use: { browserName: 'firefox' } },
{ name: 'WebKit', use: { browserName: 'webkit' } },
],
};