From edc40bc99ac72db8e35e090d501250066d8a68e8 Mon Sep 17 00:00:00 2001 From: "microsoft-playwright-automation[bot]" <203992400+microsoft-playwright-automation[bot]@users.noreply.github.com> Date: Sat, 26 Jul 2025 00:57:13 +0200 Subject: [PATCH 1/2] feat(webkit): roll to r2198 (#36794) Co-authored-by: microsoft-playwright-automation[bot] <203992400+microsoft-playwright-automation[bot]@users.noreply.github.com> --- packages/playwright-core/browsers.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright-core/browsers.json b/packages/playwright-core/browsers.json index b911a8afd54b9..df29ab99e17ba 100644 --- a/packages/playwright-core/browsers.json +++ b/packages/playwright-core/browsers.json @@ -39,7 +39,7 @@ }, { "name": "webkit", - "revision": "2197", + "revision": "2198", "installByDefault": true, "revisionOverrides": { "debian11-x64": "2105", From 2a445bb005b4671e03697ce13e7070d1930d1186 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 25 Jul 2025 16:26:30 -0700 Subject: [PATCH 2/2] chore(chrome): add canary channel on linux (#36801) --- packages/playwright-core/src/server/registry/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/playwright-core/src/server/registry/index.ts b/packages/playwright-core/src/server/registry/index.ts index 433a6f35f6ca9..fde6b2f1017de 100644 --- a/packages/playwright-core/src/server/registry/index.ts +++ b/packages/playwright-core/src/server/registry/index.ts @@ -650,7 +650,7 @@ export class Registry { })); this._executables.push(this._createChromiumChannel('chrome-canary', { - 'linux': '', + 'linux': '/opt/google/chrome-canary/chrome', 'darwin': '/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary', 'win32': `\\Google\\Chrome SxS\\Application\\chrome.exe`, })); @@ -713,7 +713,7 @@ export class Registry { 'win32': `\\Google\\Chrome\\Application\\chrome.exe`, })); this._executables.push(this._createBidiChromiumChannel('bidi-chrome-canary', { - 'linux': '', + 'linux': '/opt/google/chrome-canary/chrome', 'darwin': '/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary', 'win32': `\\Google\\Chrome SxS\\Application\\chrome.exe`, }));