Skip to content

Update dependency @playwright/test to v1.54.1 #507

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2025

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.50.0 -> 1.54.1 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.54.1

Compare Source

v1.54.0

Compare Source

Highlights

  • New cookie property partitionKey in browserContext.cookies() and browserContext.addCookies(). This property allows to save and restore partitioned cookies. See CHIPS MDN article for more information. Note that browsers have different support and defaults for cookie partitioning.

  • New option noSnippets to disable code snippets in the html report.

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { noSnippets: true }]]
    });
  • New property location in test annotations, for example in testResult.annotations and testInfo.annotations. It shows where the annotation like test.skip or test.fixme was added.

Command Line

  • New option --user-data-dir in multiple commands. You can specify the same user data dir to reuse browsing state, like authentication, between sessions.

    npx playwright codegen --user-data-dir=./user-data
  • Option -gv has been removed from the npx playwright test command. Use --grep-invert instead.

  • npx playwright open does not open the test recorder anymore. Use npx playwright codegen instead.

Miscellaneous

  • Support for Node.js 16 has been removed.
  • Support for Node.js 18 has been deprecated, and will be removed in the future.

Browser Versions

  • Chromium 139.0.7258.5
  • Mozilla Firefox 140.0.2
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 140
  • Microsoft Edge 140

v1.53.2

Compare Source

v1.53.1

Compare Source

v1.53.0

Compare Source

Trace Viewer and HTML Reporter Updates

  • New Steps in Trace Viewer and HTML reporter: New Trace Viewer Steps

  • New option in 'html' reporter to set the title of a specific test run:

    import { defineConfig } from '@​playwright/test';
    
    export default defineConfig({
      reporter: [['html', { title: 'Custom test run #​1028' }]]
    });

Miscellaneous

  • New option kind in testInfo.snapshotPath() controls which snapshot path template is used.

  • New method locator.describe() to describe a locator. Used for trace viewer and reports.

    const button = page.getByTestId('btn-sub').describe('Subscribe button');
    await button.click();
  • npx playwright install --list will now list all installed browsers, versions and locations.

Browser Versions

  • Chromium 138.0.7204.4
  • Mozilla Firefox 139.0
  • WebKit 18.5

This version was also tested against the following stable channels:

  • Google Chrome 137
  • Microsoft Edge 137

v1.52.0

Compare Source

v1.51.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/35093 - [Regression]: TimeoutOverflowWarning: 2149630.634 does not fit into a 32-bit signed integer
https://github.com/microsoft/playwright/issues/35138 - [Regression]: TypeError: Cannot read properties of undefined (reading 'expectInfo')

Browser Versions

  • Chromium 134.0.6998.35
  • Mozilla Firefox 135.0
  • WebKit 18.4

This version was also tested against the following stable channels:

  • Google Chrome 133
  • Microsoft Edge 133

v1.51.0

Compare Source

v1.50.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/34483 - [Feature]: single aria snapshot for different engines/browsershttps://github.com/microsoft/playwright/issues/344977 - [Bug]: Firefox not handling keepalive: true fetch requesthttps://github.com/microsoft/playwright/issues/3450404 - [Bug]: update snapshots not creating good difhttps://github.com/microsoft/playwright/issues/34507507 - [Bug]: snapshotPathTemplate doesnt work when multiple projehttps://github.com/microsoft/playwright/issues/344624462 - [Bug]: updateSnapshots "changed" throws an error

Browser Versions

  • Chromium 133.0.6943.16
  • Mozilla Firefox 134.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 132
  • Microsoft Edge 132

Configuration

📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - "after 8pm and before 8am every weekday,every weekend" (UTC).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Feb 1, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
theme-nextjs-starter-the-good-newsroom ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 12, 2025 3:13am
2 Skipped Deployments
Name Status Preview Comments Updated (UTC)
theme-nextjs-starter-cookbook ⬜️ Ignored (Inspect) Visit Preview Jul 12, 2025 3:13am
theme-nextjs-starter-photography ⬜️ Ignored (Inspect) Visit Preview Jul 12, 2025 3:13am

@renovate renovate bot changed the title Update dependency @playwright/test to v1.50.1 Update dependency @playwright/test to v1.51.0 Mar 8, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 712c50a to 6a452aa Compare March 8, 2025 02:57
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 6a452aa to b490db1 Compare March 22, 2025 01:31
@renovate renovate bot changed the title Update dependency @playwright/test to v1.51.0 Update dependency @playwright/test to v1.51.1 Mar 22, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from b490db1 to 03764ef Compare April 19, 2025 02:54
@renovate renovate bot changed the title Update dependency @playwright/test to v1.51.1 Update dependency @playwright/test to v1.52.0 Apr 19, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 03764ef to 938a88a Compare June 14, 2025 02:44
@renovate renovate bot changed the title Update dependency @playwright/test to v1.52.0 Update dependency @playwright/test to v1.53.0 Jun 14, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 938a88a to e09b24c Compare June 21, 2025 00:24
@renovate renovate bot changed the title Update dependency @playwright/test to v1.53.0 Update dependency @playwright/test to v1.53.1 Jun 21, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from e09b24c to bf38125 Compare July 5, 2025 01:38
@renovate renovate bot changed the title Update dependency @playwright/test to v1.53.1 Update dependency @playwright/test to v1.53.2 Jul 5, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from bf38125 to f8e58bc Compare July 12, 2025 03:12
@renovate renovate bot changed the title Update dependency @playwright/test to v1.53.2 Update dependency @playwright/test to v1.54.1 Jul 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants