Comment on page
Playwright
Instructions for getting your Playwright tests to run on Testery
Playwright enables reliable end-to-end testing for modern web apps. Here's more information on Getting Started with Playwright.
Your project requires only one simple modification to your
playwright.config.js
. Simply add the code snippet below into the projects
array.{
name: 'GoogleChrome',
use: { ...devices['Desktop Chrome'], channel: 'chrome' }
}