Updated August 21, 2026

Playwright

Playwright drives the Web client only. It does not open SAP GUI.

Imageplaywright
ClientWeb
Browserschromium (default), firefox, webkit
Suite files.spec.ts, .spec.js, .test.ts, .test.js

Packaging

Zip a Playwright project. If playwright.config.ts is present, Velo uses it except for reporters and output paths (always overridden so artifacts land in /results).

Browser version is pinned to the image. Choose engine_version to match local Playwright (1.48, 1.50, 1.55).

Parameters

FieldDefaultDescription
params.browserchromiumchromium, firefox, or webkit
params.base_urlInjected as process.env.BASE_URL
params.workers1Parallel workers (1–8)
filter.include_nameTitle regex
filter.exclude_nameSkip matching titles

Secrets in variables become environment variables. They are scrubbed from the HTML report and results.json. Playwright traces capture raw HTTP — turn trace off if the run injects tokens.

Related