[Snyk] Upgrade playwright from 1.56.1 to 1.57.0 #192

Closed
opened 2026-04-05 16:19:02 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @simlarsen on 12/22/2025

snyk-top-banner

Snyk has created this PR to upgrade playwright from 1.56.1 to 1.57.0.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 61 versions ahead of your current version.

  • The recommended version was released a month ago.

Release notes
Package name: playwright
  • 1.57.0 - 2025-11-25

    Speedboard

    In HTML reporter, there's a new tab we call "Speedboard":

    speedboard

    It shows you all your executed tests sorted by slowness,
    and can help you understand where your test suite is taking longer than expected.
    Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

    Chrome for Testing

    Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

    We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

    new and old logo

    If you still see an unexpected behaviour change, please file an issue.

    On Arm64 Linux, Playwright continues to use Chromium.

    Waiting for webserver output

    testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

    export default defineConfig({
    webServer: {
    command: 'npm run start',
    wait: {
    stdout: '/Listening on port (?<my_server_port>\d+)/'
    },
    },
    });">
    import { defineConfig } from '@ playwright/test';

    export default defineConfig({
    webServer: {
    command: 'npm run start',
    wait: {
    stdout: '/Listening on port (?<my_server_port>\d+)/'
    },
    },
    });

    If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

    test.use({ baseUrl: http://localhost:${process.env.MY_SERVER_PORT ?? 3000} });

    test('homepage', async ({ page }) => {
    await page.goto('/');
    });">

    import { test, expect } from '@ playwright/test';

    test.use({ baseUrl: http://localhost:<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">MY_SERVER_PORT</span> <span class="pl-c1">??</span> <span class="pl-c1">3000</span><span class="pl-kos">}</span></span> });

    test('homepage', async ({ page }) => {
    await page.goto('/');
    });

    This is not just useful for capturing varying ports of dev servers. You can also use it to wait for readiness of a service that doesn't expose an HTTP readiness check, but instead prints a readiness message to stdout or stderr.

    Breaking Change

    After 3 years of being deprecated, we removed Page#accessibility from our API. Please use other libraries such as Axe if you need to test page accessibility. See our Node.js guide for integration with Axe.

    New APIs

    • New property testConfig.tag adds a tag to all tests in this run. This is useful when using merge-reports.
    • worker.on('console') event is emitted when JavaScript within the worker calls one of console API methods, e.g. console.log or console.dir. worker.waitForEvent() can be used to wait for it.
    • locator.description() returns locator description previously set with locator.describe(), and Locator.toString() now uses the description when available.
    • New option steps in locator.click() and locator.dragTo() that configures the number of mousemove events emitted while moving the mouse pointer to the target element.
    • Network requests issued by Service Workers are now reported and can be routed through the BrowserContext, only in Chromium. You can opt out using the PLAYWRIGHT_DISABLE_SERVICE_WORKER_NETWORK environment variable.
    • Console messages from Service Workers are dispatched through worker.on('console'). You can opt out of this using the PLAYWRIGHT_DISABLE_SERVICE_WORKER_CONSOLE environment variable.

    Browser Versions

    • Chromium 143.0.7499.4
    • Mozilla Firefox 144.0.2
    • WebKit 26.0
  • 1.57.0-beta-1765994843000 - 2025-12-17
  • 1.57.0-beta-1765994134000 - 2025-12-17
  • 1.57.0-beta-1764944708000 - 2025-12-05
  • 1.57.0-beta-1764692940000 - 2025-12-02
  • 1.57.0-beta-1764069017000 - 2025-11-25
  • 1.57.0-beta-1764065820000 - 2025-11-25
  • 1.57.0-beta-1763739794000 - 2025-11-21
  • 1.57.0-beta-1763718928000 - 2025-11-21
  • 1.57.0-beta-1763649092000 - 2025-11-20
  • 1.57.0-alpha-2025-11-20 - 2025-11-20
  • 1.57.0-alpha-2025-11-19 - 2025-11-19
  • 1.57.0-alpha-2025-11-18 - 2025-11-18
  • 1.57.0-alpha-2025-11-17 - 2025-11-17
  • 1.57.0-alpha-2025-11-16 - 2025-11-16
  • 1.57.0-alpha-2025-11-15 - 2025-11-15
  • 1.57.0-alpha-2025-11-14 - 2025-11-14
  • 1.57.0-alpha-2025-11-13 - 2025-11-13
  • 1.57.0-alpha-2025-11-12 - 2025-11-12
  • 1.57.0-alpha-2025-11-11 - 2025-11-11
  • 1.57.0-alpha-2025-11-10 - 2025-11-10
  • 1.57.0-alpha-2025-11-09 - 2025-11-09
  • 1.57.0-alpha-2025-11-08 - 2025-11-08
  • 1.57.0-alpha-2025-11-07 - 2025-11-07
  • 1.57.0-alpha-2025-11-06 - 2025-11-06
  • 1.57.0-alpha-2025-11-05 - 2025-11-05
  • 1.57.0-alpha-2025-11-04 - 2025-11-04
  • 1.57.0-alpha-2025-11-03 - 2025-11-03
  • 1.57.0-alpha-2025-11-02 - 2025-11-02
  • 1.57.0-alpha-2025-11-01 - 2025-11-01
  • 1.57.0-alpha-2025-10-31 - 2025-10-31
  • 1.57.0-alpha-2025-10-30 - 2025-10-30
  • 1.57.0-alpha-2025-10-29 - 2025-10-29
  • 1.57.0-alpha-2025-10-28 - 2025-10-28
  • 1.57.0-alpha-2025-10-27 - 2025-10-27
  • 1.57.0-alpha-2025-10-26 - 2025-10-26
  • 1.57.0-alpha-2025-10-25 - 2025-10-25
  • 1.57.0-alpha-2025-10-24 - 2025-10-24
  • 1.57.0-alpha-2025-10-23 - 2025-10-23
  • 1.57.0-alpha-2025-10-22 - 2025-10-22
  • 1.57.0-alpha-2025-10-21 - 2025-10-21
  • 1.57.0-alpha-2025-10-20 - 2025-10-20
  • 1.57.0-alpha-2025-10-19 - 2025-10-19
  • 1.57.0-alpha-2025-10-18 - 2025-10-18
  • 1.57.0-alpha-2025-10-17 - 2025-10-17
  • 1.57.0-alpha-2025-10-16 - 2025-10-16
  • 1.57.0-alpha-2025-10-15 - 2025-10-15
  • 1.57.0-alpha-2025-10-14 - 2025-10-14
  • 1.57.0-alpha-2025-10-13 - 2025-10-13
  • 1.57.0-alpha-2025-10-12 - 2025-10-12
  • 1.57.0-alpha-2025-10-11 - 2025-10-11
  • 1.57.0-alpha-2025-10-10 - 2025-10-10
  • 1.57.0-alpha-2025-10-09 - 2025-10-09
  • 1.57.0-alpha-2025-10-08 - 2025-10-08
  • 1.57.0-alpha-2025-10-07 - 2025-10-07
  • 1.57.0-alpha-2025-10-06 - 2025-10-06
  • 1.57.0-alpha-2025-10-05 - 2025-10-05
  • 1.57.0-alpha-2025-10-04 - 2025-10-04
  • 1.57.0-alpha-2025-10-03 - 2025-10-03
  • 1.57.0-alpha-1761929702000 - 2025-10-31
  • 1.57.0-alpha-1760728340000 - 2025-10-17
  • 1.56.1 - 2025-10-17

    Highlights

    #37871 chore: allow local-network-access permission in chromium
    #37891 fix(agents): remove workspaceFolder ref from vscode mcp
    #37759 chore: rename agents to test agents
    #37757 chore(mcp): fallback to cwd when resolving test config

    Browser Versions

    • Chromium 141.0.7390.37
    • Mozilla Firefox 142.0.1
    • WebKit 26.0
from playwright GitHub release notes

Important

  • Check the changes in this PR to ensure they won't cause issues with your project.
  • This PR was automatically created by Snyk using the credentials of a real user.

Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

*Originally created by @simlarsen on 12/22/2025* ![snyk-top-banner](https://res.cloudinary.com/snyk/image/upload/r-d/scm-platform/snyk-pull-requests/pr-banner-default.svg) <h3>Snyk has created this PR to upgrade playwright from 1.56.1 to 1.57.0.</h3> :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project. <hr/> - The recommended version is **61 versions** ahead of your current version. - The recommended version was released **a month ago**. <details> <summary><b>Release notes</b></summary> <br/> <details> <summary>Package name: <b>playwright</b></summary> <ul> <li> <b>1.57.0</b> - <a href="https://redirect.github.com/microsoft/playwright/releases/tag/v1.57.0">2025-11-25</a></br><h2>Speedboard</h2> <p>In HTML reporter, there's a new tab we call "Speedboard":</p> <a target="_blank" rel="noopener noreferrer" href="https://private-user-images.githubusercontent.com/14912729/518585867-4ba117ea-ea94-4b6a-82b2-8bbd00dfe81c.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NjYzOTkxODMsIm5iZiI6MTc2NjM5ODg4MywicGF0aCI6Ii8xNDkxMjcyOS81MTg1ODU4NjctNGJhMTE3ZWEtZWE5NC00YjZhLTgyYjItOGJiZDAwZGZlODFjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTEyMjIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUxMjIyVDEwMjEyM1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTgzMWNkZTdiMzZkNzg3Yzc4OTgxMDQ5ZWQ0MWZjMGZiMDY2MTIxYjg3YjIzZmU5YjRhNDg3NTY4ODBhZGUzNzImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.QYVg3c9mLf6C8-BIyGS1hmkdGMOk0pBIJl9lCIENS6c"><img width="600" alt="speedboard" src="https://private-user-images.githubusercontent.com/14912729/518585867-4ba117ea-ea94-4b6a-82b2-8bbd00dfe81c.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NjYzOTkxODMsIm5iZiI6MTc2NjM5ODg4MywicGF0aCI6Ii8xNDkxMjcyOS81MTg1ODU4NjctNGJhMTE3ZWEtZWE5NC00YjZhLTgyYjItOGJiZDAwZGZlODFjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTEyMjIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUxMjIyVDEwMjEyM1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTgzMWNkZTdiMzZkNzg3Yzc4OTgxMDQ5ZWQ0MWZjMGZiMDY2MTIxYjg3YjIzZmU5YjRhNDg3NTY4ODBhZGUzNzImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.QYVg3c9mLf6C8-BIyGS1hmkdGMOk0pBIJl9lCIENS6c" content-type-secured-asset="image/png" style="max-width: 100%;"></a> <p>It shows you all your executed tests sorted by slowness,<br> and can help you understand where your test suite is taking longer than expected.<br> Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!</p> <h2>Chrome for Testing</h2> <p>Starting with this release, Playwright switches from Chromium, to using <a href="https://developer.chrome.com/blog/chrome-for-testing/" rel="nofollow">Chrome for Testing</a> builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.</p> <p>We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.</p> <a target="_blank" rel="noopener noreferrer" href="https://private-user-images.githubusercontent.com/14912729/518586000-e9a5c4f2-9f35-4c27-9382-0f5eda377097.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NjYzOTkxODMsIm5iZiI6MTc2NjM5ODg4MywicGF0aCI6Ii8xNDkxMjcyOS81MTg1ODYwMDAtZTlhNWM0ZjItOWYzNS00YzI3LTkzODItMGY1ZWRhMzc3MDk3LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTEyMjIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUxMjIyVDEwMjEyM1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTNiOWQ5NWQ4MzUzMzg3NDllMjk0YjRhNzU4YWQwZDM1MDJkNjI4MDkzMzg0MTEwY2ZjZDY5Njg0MzkxNGQzZWEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.muNUwffizAsA867KMRFVdBz2v7N2-MiN3O5MUiesOfs"><img width="500" alt="new and old logo" src="https://private-user-images.githubusercontent.com/14912729/518586000-e9a5c4f2-9f35-4c27-9382-0f5eda377097.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NjYzOTkxODMsIm5iZiI6MTc2NjM5ODg4MywicGF0aCI6Ii8xNDkxMjcyOS81MTg1ODYwMDAtZTlhNWM0ZjItOWYzNS00YzI3LTkzODItMGY1ZWRhMzc3MDk3LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTEyMjIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUxMjIyVDEwMjEyM1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTNiOWQ5NWQ4MzUzMzg3NDllMjk0YjRhNzU4YWQwZDM1MDJkNjI4MDkzMzg0MTEwY2ZjZDY5Njg0MzkxNGQzZWEmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.muNUwffizAsA867KMRFVdBz2v7N2-MiN3O5MUiesOfs" content-type-secured-asset="image/png" style="max-width: 100%;"></a> <p>If you still see an unexpected behaviour change, please <a href="https://redirect.github.com/microsoft/playwright/issues/new">file an issue</a>.</p> <p>On Arm64 Linux, Playwright continues to use Chromium.</p> <h2>Waiting for webserver output</h2> <p><a href="https://playwright.dev/docs/api/class-testconfig#test-config-web-server" rel="nofollow">testConfig.webServer</a> added a <code>wait</code> field. Pass a regular expression, and Playwright will wait until the webserver logs match it.</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import { defineConfig } from '@ playwright/test'; export default defineConfig({ webServer: { command: 'npm run start', wait: { stdout: '/Listening on port (?&lt;my_server_port&gt;\\d+)/' }, }, });"><pre><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">defineConfig</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@ playwright/test'</span><span class="pl-kos">;</span> <span class="pl-k">export</span> <span class="pl-k">default</span> <span class="pl-en">defineConfig</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">webServer</span>: <span class="pl-kos">{</span> <span class="pl-c1">command</span>: <span class="pl-s">'npm run start'</span><span class="pl-kos">,</span> <span class="pl-c1">wait</span>: <span class="pl-kos">{</span> <span class="pl-c1">stdout</span>: <span class="pl-s">'/Listening on port (?&lt;my_server_port&gt;\\d+)/'</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p>If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import { test, expect } from '@ playwright/test'; test.use({ baseUrl: `http://localhost:${process.env.MY_SERVER_PORT ?? 3000}` }); test('homepage', async ({ page }) =&gt; { await page.goto('/'); });"><pre><span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">test</span><span class="pl-kos">,</span> <span class="pl-s1">expect</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@ playwright/test'</span><span class="pl-kos">;</span> <span class="pl-s1">test</span><span class="pl-kos">.</span><span class="pl-en">use</span><span class="pl-kos">(</span><span class="pl-kos">{</span> <span class="pl-c1">baseUrl</span>: <span class="pl-s">`http://localhost:<span class="pl-s1"><span class="pl-kos">${</span><span class="pl-s1">process</span><span class="pl-kos">.</span><span class="pl-c1">env</span><span class="pl-kos">.</span><span class="pl-c1">MY_SERVER_PORT</span> <span class="pl-c1">??</span> <span class="pl-c1">3000</span><span class="pl-kos">}</span></span>`</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-s">'homepage'</span><span class="pl-kos">,</span> <span class="pl-k">async</span> <span class="pl-kos">(</span><span class="pl-kos">{</span> page <span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-k">await</span> <span class="pl-s1">page</span><span class="pl-kos">.</span><span class="pl-en">goto</span><span class="pl-kos">(</span><span class="pl-s">'/'</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p>This is not just useful for capturing varying ports of dev servers. You can also use it to wait for readiness of a service that doesn't expose an HTTP readiness check, but instead prints a readiness message to stdout or stderr.</p> <h2>Breaking Change</h2> <p>After 3 years of being deprecated, we removed <code>Page#accessibility</code> from our API. Please use other libraries such as <a href="https://www.deque.com/axe/" rel="nofollow">Axe</a> if you need to test page accessibility. See our Node.js <a href="https://playwright.dev/docs/accessibility-testing" rel="nofollow">guide</a> for integration with Axe.</p> <h2>New APIs</h2> <ul> <li>New property <a href="https://playwright.dev/docs/api/class-testconfig#test-config-tag" rel="nofollow">testConfig.tag</a> adds a tag to all tests in this run. This is useful when using <a href="https://playwright.dev/docs/test-sharding#merging-reports-from-multiple-shards" rel="nofollow">merge-reports</a>.</li> <li><a href="https://playwright.dev/docs/api/class-worker#worker-event-console" rel="nofollow">worker.on('console')</a> event is emitted when JavaScript within the worker calls one of console API methods, e.g. console.log or console.dir. <a href="https://playwright.dev/docs/api/class-worker#worker-wait-for-event" rel="nofollow">worker.waitForEvent()</a> can be used to wait for it.</li> <li><a href="https://playwright.dev/docs/api/class-locator#locator-description" rel="nofollow">locator.description()</a> returns locator description previously set with <a href="https://playwright.dev/docs/api/class-locator#locator-describe" rel="nofollow">locator.describe()</a>, and <code>Locator.toString()</code> now uses the description when available.</li> <li>New option <a href="https://playwright.dev/docs/api/class-locator#locator-click-option-steps" rel="nofollow"><code>steps</code></a> in <a href="https://playwright.dev/docs/api/class-locator#locator-click" rel="nofollow">locator.click()</a> and <a href="https://playwright.dev/docs/api/class-locator#locator-drag-to" rel="nofollow">locator.dragTo()</a> that configures the number of <code>mousemove</code> events emitted while moving the mouse pointer to the target element.</li> <li>Network requests issued by <a href="https://playwright.dev/docs/service-workers#network-events-and-routing" rel="nofollow">Service Workers</a> are now reported and can be routed through the <a href="https://playwright.dev/docs/api/class-browsercontext" rel="nofollow">BrowserContext</a>, only in Chromium. You can opt out using the <code>PLAYWRIGHT_DISABLE_SERVICE_WORKER_NETWORK</code> environment variable.</li> <li>Console messages from Service Workers are dispatched through <a href="https://playwright.dev/docs/api/class-worker#worker-event-console" rel="nofollow">worker.on('console')</a>. You can opt out of this using the <code>PLAYWRIGHT_DISABLE_SERVICE_WORKER_CONSOLE</code> environment variable.</li> </ul> <h2>Browser Versions</h2> <ul> <li>Chromium 143.0.7499.4</li> <li>Mozilla Firefox 144.0.2</li> <li>WebKit 26.0</li> </ul> </li> <li> <b>1.57.0-beta-1765994843000</b> - 2025-12-17 </li> <li> <b>1.57.0-beta-1765994134000</b> - 2025-12-17 </li> <li> <b>1.57.0-beta-1764944708000</b> - 2025-12-05 </li> <li> <b>1.57.0-beta-1764692940000</b> - 2025-12-02 </li> <li> <b>1.57.0-beta-1764069017000</b> - 2025-11-25 </li> <li> <b>1.57.0-beta-1764065820000</b> - 2025-11-25 </li> <li> <b>1.57.0-beta-1763739794000</b> - 2025-11-21 </li> <li> <b>1.57.0-beta-1763718928000</b> - 2025-11-21 </li> <li> <b>1.57.0-beta-1763649092000</b> - 2025-11-20 </li> <li> <b>1.57.0-alpha-2025-11-20</b> - 2025-11-20 </li> <li> <b>1.57.0-alpha-2025-11-19</b> - 2025-11-19 </li> <li> <b>1.57.0-alpha-2025-11-18</b> - 2025-11-18 </li> <li> <b>1.57.0-alpha-2025-11-17</b> - 2025-11-17 </li> <li> <b>1.57.0-alpha-2025-11-16</b> - 2025-11-16 </li> <li> <b>1.57.0-alpha-2025-11-15</b> - 2025-11-15 </li> <li> <b>1.57.0-alpha-2025-11-14</b> - 2025-11-14 </li> <li> <b>1.57.0-alpha-2025-11-13</b> - 2025-11-13 </li> <li> <b>1.57.0-alpha-2025-11-12</b> - 2025-11-12 </li> <li> <b>1.57.0-alpha-2025-11-11</b> - 2025-11-11 </li> <li> <b>1.57.0-alpha-2025-11-10</b> - 2025-11-10 </li> <li> <b>1.57.0-alpha-2025-11-09</b> - 2025-11-09 </li> <li> <b>1.57.0-alpha-2025-11-08</b> - 2025-11-08 </li> <li> <b>1.57.0-alpha-2025-11-07</b> - 2025-11-07 </li> <li> <b>1.57.0-alpha-2025-11-06</b> - 2025-11-06 </li> <li> <b>1.57.0-alpha-2025-11-05</b> - 2025-11-05 </li> <li> <b>1.57.0-alpha-2025-11-04</b> - 2025-11-04 </li> <li> <b>1.57.0-alpha-2025-11-03</b> - 2025-11-03 </li> <li> <b>1.57.0-alpha-2025-11-02</b> - 2025-11-02 </li> <li> <b>1.57.0-alpha-2025-11-01</b> - 2025-11-01 </li> <li> <b>1.57.0-alpha-2025-10-31</b> - 2025-10-31 </li> <li> <b>1.57.0-alpha-2025-10-30</b> - 2025-10-30 </li> <li> <b>1.57.0-alpha-2025-10-29</b> - 2025-10-29 </li> <li> <b>1.57.0-alpha-2025-10-28</b> - 2025-10-28 </li> <li> <b>1.57.0-alpha-2025-10-27</b> - 2025-10-27 </li> <li> <b>1.57.0-alpha-2025-10-26</b> - 2025-10-26 </li> <li> <b>1.57.0-alpha-2025-10-25</b> - 2025-10-25 </li> <li> <b>1.57.0-alpha-2025-10-24</b> - 2025-10-24 </li> <li> <b>1.57.0-alpha-2025-10-23</b> - 2025-10-23 </li> <li> <b>1.57.0-alpha-2025-10-22</b> - 2025-10-22 </li> <li> <b>1.57.0-alpha-2025-10-21</b> - 2025-10-21 </li> <li> <b>1.57.0-alpha-2025-10-20</b> - 2025-10-20 </li> <li> <b>1.57.0-alpha-2025-10-19</b> - 2025-10-19 </li> <li> <b>1.57.0-alpha-2025-10-18</b> - 2025-10-18 </li> <li> <b>1.57.0-alpha-2025-10-17</b> - 2025-10-17 </li> <li> <b>1.57.0-alpha-2025-10-16</b> - 2025-10-16 </li> <li> <b>1.57.0-alpha-2025-10-15</b> - 2025-10-15 </li> <li> <b>1.57.0-alpha-2025-10-14</b> - 2025-10-14 </li> <li> <b>1.57.0-alpha-2025-10-13</b> - 2025-10-13 </li> <li> <b>1.57.0-alpha-2025-10-12</b> - 2025-10-12 </li> <li> <b>1.57.0-alpha-2025-10-11</b> - 2025-10-11 </li> <li> <b>1.57.0-alpha-2025-10-10</b> - 2025-10-10 </li> <li> <b>1.57.0-alpha-2025-10-09</b> - 2025-10-09 </li> <li> <b>1.57.0-alpha-2025-10-08</b> - 2025-10-08 </li> <li> <b>1.57.0-alpha-2025-10-07</b> - 2025-10-07 </li> <li> <b>1.57.0-alpha-2025-10-06</b> - 2025-10-06 </li> <li> <b>1.57.0-alpha-2025-10-05</b> - 2025-10-05 </li> <li> <b>1.57.0-alpha-2025-10-04</b> - 2025-10-04 </li> <li> <b>1.57.0-alpha-2025-10-03</b> - 2025-10-03 </li> <li> <b>1.57.0-alpha-1761929702000</b> - 2025-10-31 </li> <li> <b>1.57.0-alpha-1760728340000</b> - 2025-10-17 </li> <li> <b>1.56.1</b> - <a href="https://redirect.github.com/microsoft/playwright/releases/tag/v1.56.1">2025-10-17</a></br><h2>Highlights</h2> <p><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3519132326" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/37871" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/playwright/pull/37871/hovercard" href="https://redirect.github.com/microsoft/playwright/pull/37871">#37871</a> chore: allow local-network-access permission in chromium<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3523596736" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/37891" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/playwright/pull/37891/hovercard" href="https://redirect.github.com/microsoft/playwright/pull/37891">#37891</a> fix(agents): remove workspaceFolder ref from vscode mcp<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3492879098" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/37759" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/playwright/pull/37759/hovercard" href="https://redirect.github.com/microsoft/playwright/pull/37759">#37759</a> chore: rename agents to test agents<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="3492682067" data-permission-text="Title is private" data-url="https://github.com/microsoft/playwright/issues/37757" data-hovercard-type="pull_request" data-hovercard-url="/microsoft/playwright/pull/37757/hovercard" href="https://redirect.github.com/microsoft/playwright/pull/37757">#37757</a> chore(mcp): fallback to cwd when resolving test config</p> <h2>Browser Versions</h2> <ul> <li>Chromium 141.0.7390.37</li> <li>Mozilla Firefox 142.0.1</li> <li>WebKit 26.0</li> </ul> </li> </ul> from <a href="https://redirect.github.com/microsoft/playwright/releases">playwright GitHub release notes</a> </details> </details> --- > [!IMPORTANT] > > - Check the changes in this PR to ensure they won't cause issues with your project. > - This PR was automatically created by Snyk using the credentials of a real user. --- **Note:** _You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs._ **For more information:** <img src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiJkMmFjMzg4Mi04ZWFhLTRhNWEtOGVhMS0xYjJjMTJiNzZjOTMiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6ImQyYWMzODgyLThlYWEtNGE1YS04ZWExLTFiMmMxMmI3NmM5MyJ9fQ==" width="0" height="0"/> > - 🧐 [View latest project report](https://app.snyk.io/org/oneuptime-RsC2nshvQ2Vnr35jHvMnMP/project/49c81d9c-12c2-4e8e-b9e8-72f98b1b595c?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr) > - 📜 [Customise PR templates](https://docs.snyk.io/scan-using-snyk/pull-requests/snyk-fix-pull-or-merge-requests/customize-pr-templates?utm_source=&utm_content=fix-pr-template) > - 🛠 [Adjust upgrade PR settings](https://app.snyk.io/org/oneuptime-RsC2nshvQ2Vnr35jHvMnMP/project/49c81d9c-12c2-4e8e-b9e8-72f98b1b595c/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr) > - 🔕 [Ignore this dependency or unsubscribe from future upgrade PRs](https://app.snyk.io/org/oneuptime-RsC2nshvQ2Vnr35jHvMnMP/project/49c81d9c-12c2-4e8e-b9e8-72f98b1b595c/settings/integration?pkg&#x3D;playwright&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades) [//]: # 'snyk:metadata:{"breakingChangeRiskLevel":null,"FF_showPullRequestBreakingChanges":false,"FF_showPullRequestBreakingChangesWebSearch":false,"customTemplate":{"variablesUsed":[],"fieldsUsed":[]},"dependencies":[{"name":"playwright","from":"1.56.1","to":"1.57.0"}],"env":"prod","hasFixes":false,"isBreakingChange":false,"isMajorUpgrade":false,"issuesToFix":[],"prId":"d2ac3882-8eaa-4a5a-8ea1-1b2c12b76c93","prPublicId":"d2ac3882-8eaa-4a5a-8ea1-1b2c12b76c93","packageManager":"npm","priorityScoreList":[],"projectPublicId":"49c81d9c-12c2-4e8e-b9e8-72f98b1b595c","projectUrl":"https://app.snyk.io/org/oneuptime-RsC2nshvQ2Vnr35jHvMnMP/project/49c81d9c-12c2-4e8e-b9e8-72f98b1b595c?utm_source=github&utm_medium=referral&page=upgrade-pr","prType":"upgrade","templateFieldSources":{"branchName":"default","commitMessage":"default","description":"default","title":"default"},"templateVariants":[],"type":"auto","upgrade":[],"upgradeInfo":{"versionsDiff":61,"publishedDate":"2025-11-25T11:17:08.230Z"},"vulns":[]}'
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/oneuptime#192