From d359812643973e3aeecd55015d820f2cee8509f0 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Tue, 31 Mar 2026 04:30:33 +0200 Subject: [PATCH] Add WebGL launch options to Playwright config --- playwright.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 921b227a..653cf73b 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -15,7 +15,10 @@ export default defineConfig({ { name: "chromium", use: { - ...devices["Desktop Chrome"] + ...devices["Desktop Chrome"], + launchOptions: { + args: ["--enable-webgl", "--use-gl=angle", "--use-angle=swiftshader-webgl"] + } } } ],