id | title | sidebar_label |
---|---|---|
playwright |
Playwright on Sauce Labs |
Using Playwright |
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import useBaseUrl from '@docusaurus/useBaseUrl';
Playwright is a testing framework that you can use to test your web apps remotely on Sauce Labs Cloud using the saucectl
CLI.
JavaScript and TypeScript are supported out of the box. Cucumber.js is not directly supported by Playwright. However, Playwright can be used as the backing automation framework. See this setup guide for more information.
Supported OS:
- Windows 10 / Windows 11
- macOS 10.15+
- Linux
Sauce Labs supports the following test configurations for Playwright:
Playwright Version | Node.js Version | Supported Platforms | Supported Browsers | End of Life |
---|---|---|---|---|
1.41.0 | 20 | macOS: 11.00, 12, 13 | Chromium, Chrome, Firefox, Webkit | January 22, 2025 |
Windows: 10, 11 | ||||
1.40.1 | 20 | macOS: 11.00, 12, 13 | Chromium, Chrome, Firefox, Webkit | December 6, 2024 |
Windows: 10, 11 | ||||
1.39.0 | 20 | macOS: 11.00, 12, 13 | Chromium, Chrome, Firefox, Webkit | November 7, 2024 |
Windows: 10, 11 | ||||
1.38.1 | 18 | macOS: 11.00, 12, 13 | Chromium, Chrome, Firefox, Webkit | September 28, 2024 |
Windows: 10, 11 | ||||
1.37.1 | 18 | macOS: 11.00, 12, 13 | Chromium, Chrome, Firefox, Webkit | August 31, 2024 |
Windows: 10, 11 | ||||
1.36.2 | 18 | macOS: 11.00, 12, 13 | Chromium, Chrome, Firefox, Webkit | August 1, 2024 |
Windows: 10, 11 | ||||
1.35.1 | 18 | macOS: 11.00, 12, 13 | Chromium, Chrome, Firefox, Webkit | June 16, 2024 |
Windows: 10, 11 | ||||
1.33.0 | 18 | macOS: 11.00, 12, 13 | Chromium, Chrome, Firefox, Webkit | May 11, 2024 |
Windows: 10, 11 | ||||
1.31.1 | 16 | macOS: 11.00, 12, 13 | Chromium, Chrome, Firefox, Webkit | Mar 01, 2024 |
Windows: 10, 11 |
- Quickstart: Use our demo repository to quickly set up and run a sample Playwright project and test to see the results.
- Run your own tests: Customize
saucectl
to run your existing tests just by modifying theconfig.yml
file for your project. - Incorporate
saucectl
in your pipeline: Playwright on Sauce supports CI integrations with Circle CI, GitLab, Jenkins, and GitHub Actions. - Run your tests in Orchestrate: Use
saucectl
to run tests with a containerized test runner.
If you prefer to stay in Playwright, try the Playwright Sauce Labs Reporter. Connect to your Sauce Labs account from within your Playwright project to configure and run your tests directly from Playwright.
We recommend that you avoid the use of special characters when naming your tests. If your test name contains any special characters, your test may not run or its artifacts may not be visible in our platform.
When using Sauce-Connect, Webkit browser is unable to load any website that is hosted on the Internet. Local websites can still be loaded.
Webkit is not working on macOS 11 since Playwright 1.29.0
Because of a limitation in how assets are stored on our platform, configuring your tests to use the built-in HTML reporter and Playwright's Trace Viewer feature will not work as expected.
If you use project specific launchOptions
along with setting Chrome as the browser, you'll encounter the following error:
browserType.launch: Chromium distribution 'chrome' is not found at C:\Users\sauce\AppData\Local\Google\Chrome\Application\chrome.exe
This is because playwright's project specific settings override the global configuration that Sauce Labs provides during runtime. In this case, the location of the browser binary. Make sure that launchOptions
are not set when running on a Sauce VM.
There is a known issue in Playwright that prevents some sites from loading in Webkit on Windows with the error SSL peer certificate or SSH remote key was not OK
. We recommend running your Playwright + Webkit tests on our Mac VMs by setting the platformName to either macOS 13
or macOS 12
.
:::note Tests running through Sauce Tunnels are unaffected. :::