Skip to content

Update dependency @playwright/test to ^1.52.0 #424

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 Oct 26, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@playwright/test (source) ^1.47.1 -> ^1.52.0 age adoption passing confidence

Release Notes

microsoft/playwright (@​playwright/test)

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

v1.50.0

Compare Source

Test runner

  • New option timeout allows specifying a maximum run time for an individual test step. A timed-out step will fail the execution of the test.

    test('some test', async ({ page }) => {
      await test.step('a step', async () => {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
  • New method test.step.skip() to disable execution of a test step.

    test('some test', async ({ page }) => {
      await test.step('before running step', async () => {
        // Normal step
      });
    
      await test.step.skip('not yet ready', async () => {
        // This step is skipped
      });
    
      await test.step('after running step', async () => {
        // This step still runs even though the previous one was skipped
      });
    });
  • Expanded expect(locator).toMatchAriaSnapshot() to allow storing of aria snapshots in separate YAML files.

  • Added method expect(locator).toHaveAccessibleErrorMessage() to assert the Locator points to an element with a given aria errormessage.

  • Option testConfig.updateSnapshots added the configuration enum changed. changed updates only the snapshots that have changed, whereas all now updates all snapshots, regardless of whether there are any differences.

  • New option testConfig.updateSourceMethod defines the way source code is updated when testConfig.updateSnapshots is configured. Added overwrite and 3-way modes that write the changes into source code, on top of existing patch mode that creates a patch file.

    npx playwright test --update-snapshots=changed --update-source-method=3way
  • Option testConfig.webServer added a gracefulShutdown field for specifying a process kill signal other than the default SIGKILL.

  • Exposed testStep.attachments from the reporter API to allow retrieval of all attachments created by that step.

  • New option pathTemplate for toHaveScreenshot and toMatchAriaSnapshot assertions in the testConfig.expect configuration.

UI updates

  • Updated default HTML reporter to improve display of attachments.
  • New button for picking elements to produce aria snapshots.
  • Additional details (such as keys pressed) are now displayed alongside action API calls in traces.
  • Display of canvas content in traces is error-prone. Display is now disabled by default, and can be enabled via the Display canvas content UI setting.
  • Call and Network panels now display additional time information.

Breaking

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

v1.49.1

Compare Source

Highlights

https://github.com/microsoft/playwright/issues/33802 - [Bug]: Codegen's Clear button doesn't work if not recordinghttps://github.com/microsoft/playwright/issues/338066 - [Bug]: playwright hangs while waiting for pending navigationhttps://github.com/microsoft/playwright/issues/3378787 - [Bug]: VSC extension isn't capturing all entered tehttps://github.com/microsoft/playwright/issues/33788788 - [Regression]: Double clicking the steps in trace viewer doesn't filter actihttps://github.com/microsoft/playwright/issues/337723772 - [Bug]: aria_snapshot generates invalid yaml when combined with an aria-label attrhttps://github.com/microsoft/playwright/issues/3379133791 - [Bug]: text input with number value raises "container is not iterable" with to_match_aria_snahttps://github.com/microsoft/playwright/issues/33644/33644 - [Bug]: getByRole can't find element with the accessible name from label element when aria-labelledby is nothttps://github.com/microsoft/playwright/issues/33660s/33660 - [Regression]: Unable to open Playwright UI in Dark Mode

Browser Versions

  • Chromium 131.0.6778.33
  • Mozilla Firefox 132.0
  • WebKit 18.2

This version was also tested against the following stable channels:

  • Google Chrome 130
  • Microsoft Edge 130

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.

@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from 7cf9dd6 to 6284473 Compare November 1, 2024 04:39
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 7 times, most recently from ae25f46 to 6dfb1b8 Compare November 8, 2024 20:34
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 6dfb1b8 to 366a699 Compare November 11, 2024 15:41
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 366a699 to f59b040 Compare November 18, 2024 22:58
@renovate renovate bot changed the title Update dependency @playwright/test to ^1.48.2 Update dependency @playwright/test to ^1.49.0 Nov 18, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 6 times, most recently from 20876fd to cfafef2 Compare November 27, 2024 02:21
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from cfafef2 to 5c88987 Compare December 4, 2024 13:30
@renovate renovate bot changed the title Update dependency @playwright/test to ^1.49.0 Update dependency @playwright/test to ^1.49.1 Dec 10, 2024
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 5c88987 to 9ef179d Compare December 10, 2024 05:31
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 9ef179d to 0b0cc14 Compare January 4, 2025 02:38
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 7 times, most recently from 4aebe1a to 21a50da Compare January 17, 2025 19:34
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 10 times, most recently from b61683e to 32aedb7 Compare April 1, 2025 22:55
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 6 times, most recently from 1766e41 to d42f15d Compare April 10, 2025 17:29
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from d42f15d to 1d5085f Compare April 11, 2025 12:35
Copy link
Contributor Author

renovate bot commented Apr 11, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm warn Unknown project config "resolution-mode". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: [email protected]
npm error Found: [email protected]
npm error node_modules/tailwindcss
npm error   dev tailwindcss@"^3.4.17" from the root project
npm error
npm error Could not resolve dependency:
npm error peer tailwindcss@"^4.0.0" from @skeletonlabs/[email protected]
npm error node_modules/@skeletonlabs/skeleton
npm error   dev @skeletonlabs/skeleton@"^3.1.2" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2025-05-28T01_28_57_224Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2025-05-28T01_28_57_224Z-debug-0.log

@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 3 times, most recently from c6b6686 to 914963a Compare April 17, 2025 19:38
@renovate renovate bot changed the title Update dependency @playwright/test to ^1.51.1 Update dependency @playwright/test to ^1.52.0 Apr 17, 2025
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 914963a to 463c844 Compare April 25, 2025 13:19
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch 4 times, most recently from 4bf03ea to 2f2d506 Compare May 20, 2025 13:36
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from 2f2d506 to d143f3a Compare May 28, 2025 01:10
@renovate renovate bot force-pushed the renovate/playwright-monorepo branch from d143f3a to 7fd43c2 Compare May 28, 2025 01:29
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