Skip to content
This repository was archived by the owner on Jul 14, 2026. It is now read-only.

Bump @playwright/test from 1.56.1 to 1.57.0#270

Merged
Germandrummer92 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/playwright/test-1.57.0
Jan 12, 2026
Merged

Bump @playwright/test from 1.56.1 to 1.57.0#270
Germandrummer92 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/playwright/test-1.57.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Nov 26, 2025

Copy link
Copy Markdown
Contributor

Bumps @playwright/test from 1.56.1 to 1.57.0.

Release notes

Sourced from @​playwright/test's releases.

v1.57.0

Speedboard

In HTML reporter, there's a new tab we call "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.

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.

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:

import { test, expect } from '@playwright/test';
test.use({ baseUrl: http://localhost:${process.env.MY_SERVER_PORT ?? 3000} });
test('homepage', async ({ page }) => {
await page.goto('/');
});
</tr></table>

... (truncated)

Commits

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Nov 26, 2025
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright/test-1.57.0 branch 3 times, most recently from 2e82e95 to 238d99b Compare December 2, 2025 10:39
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright/test-1.57.0 branch 10 times, most recently from ac3f00c to 004fdc5 Compare December 15, 2025 17:28
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright/test-1.57.0 branch 10 times, most recently from b228576 to 156042b Compare December 18, 2025 11:06
@dependabot @github

dependabot Bot commented on behalf of github Dec 18, 2025

Copy link
Copy Markdown
Contributor Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright/test-1.57.0 branch 2 times, most recently from fd48060 to 41b4cb8 Compare December 19, 2025 14:56
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/playwright/test-1.57.0 branch 2 times, most recently from fcbef1e to e2f8fe1 Compare December 22, 2025 13:21
@Germandrummer92
Germandrummer92 force-pushed the dependabot/npm_and_yarn/playwright/test-1.57.0 branch from e2f8fe1 to 828ae1f Compare January 9, 2026 12:10
Bumps [@playwright/test](https://github.com/microsoft/playwright) from 1.56.1 to 1.57.0.
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.1...v1.57.0)

---
updated-dependencies:
- dependency-name: "@playwright/test"
  dependency-version: 1.57.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@Germandrummer92
Germandrummer92 force-pushed the dependabot/npm_and_yarn/playwright/test-1.57.0 branch from 828ae1f to a4cef8b Compare January 12, 2026 07:52
@Germandrummer92
Germandrummer92 merged commit d6cd823 into main Jan 12, 2026
3 checks passed
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/playwright/test-1.57.0 branch January 12, 2026 07:53
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant