Skip to content

Update dependency @playwright/test to v1.55.0 #511

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 Apr 17, 2025

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.51.1 -> 1.55.0 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.55.0

Compare Source

v1.54.2

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error)https://github.com/microsoft/playwright/issues/368288 - [Regression]: Playwright Codegen keeps spamming with selected optiohttps://github.com/microsoft/playwright/issues/3681010 - [Regression]: Starting Codegen with target language doesn't work anymore

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.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


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 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

sourcery-ai bot commented Apr 17, 2025

Reviewer's Guide by Sourcery

This pull request updates the @playwright/test dependency from version 1.51.1 to 1.52.0. This involves changes to both package.json and pnpm-lock.yaml to reflect the new version.

Updated class diagram for Playwright Test

classDiagram
  class PlaywrightTest {
    <<package>> @playwright/test
    version: 1.52.0
  }

  class PlaywrightCore {
    <<package>> playwright-core
    version: 1.52.0
  }

  class Playwright {
    <<package>> playwright
    version: 1.52.0
  }

  PlaywrightTest -- Playwright : depends on
  Playwright -- PlaywrightCore : depends on

  note for PlaywrightTest "Updated to version 1.52.0"
  note for PlaywrightCore "Updated to version 1.52.0"
  note for Playwright "Updated to version 1.52.0"
Loading

File-Level Changes

Change Details Files
Updated the version of @playwright/test.
  • Updated @playwright/test from version 1.51.1 to 1.52.0 in package.json.
  • Updated @playwright/test from version 1.51.1 to 1.52.0 in pnpm-lock.yaml.
  • Updated playwright-core from version 1.51.1 to 1.52.0 in pnpm-lock.yaml.
  • Updated playwright from version 1.51.1 to 1.52.0 in pnpm-lock.yaml.
pnpm-lock.yaml
package.json

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, renovate[bot]!). We assume it knows what it's doing!

Copy link

@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 052e1a7 to 9378905 Compare June 10, 2025 21:01
@renovate renovate bot changed the title Update dependency @playwright/test to v1.52.0 Update dependency @playwright/test to v1.53.0 Jun 10, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 9378905 to d94483e Compare June 19, 2025 00:29
@renovate renovate bot changed the title Update dependency @playwright/test to v1.53.0 Update dependency @playwright/test to v1.53.1 Jun 19, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from d94483e to 2a511f5 Compare July 1, 2025 00:56
@renovate renovate bot changed the title Update dependency @playwright/test to v1.53.1 Update dependency @playwright/test to v1.53.2 Jul 1, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from 04a096d to d91cdb4 Compare July 10, 2025 18:45
@renovate renovate bot changed the title Update dependency @playwright/test to v1.53.2 Update dependency @playwright/test to v1.54.0 Jul 10, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from d91cdb4 to 08a357a Compare July 11, 2025 17:11
@renovate renovate bot changed the title Update dependency @playwright/test to v1.54.0 Update dependency @playwright/test to v1.54.1 Jul 11, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 08a357a to ea98d91 Compare August 1, 2025 07:51
@renovate renovate bot changed the title Update dependency @playwright/test to v1.54.1 Update dependency @playwright/test to v1.54.2 Aug 1, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from ea98d91 to adae8a8 Compare August 20, 2025 16:47
@renovate renovate bot changed the title Update dependency @playwright/test to v1.54.2 Update dependency @playwright/test to v1.55.0 Aug 20, 2025
Copy link

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