Skip to content
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

chore(deps): update dependency @playwright/test to ^1.49.1 #133

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

Conversation

homarr-renovate[bot]
Copy link
Contributor

@homarr-renovate homarr-renovate bot commented Nov 18, 2024

This PR contains the following updates:

Package Type Update Change
@playwright/test (source) devDependencies minor ^1.48.2 -> ^1.49.1

Release Notes

microsoft/playwright (@​playwright/test)

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

v1.49.0

Compare Source

Aria snapshots

New assertion expect(locator).toMatchAriaSnapshot() verifies page structure by comparing to an expected accessibility tree, represented as YAML.

await page.goto('https://playwright.dev');
await expect(page.locator('body')).toMatchAriaSnapshot(`
  - banner:
    - heading /Playwright enables reliable/ [level=1]
    - link "Get started"
    - link "Star microsoft/playwright on GitHub"
  - main:
    - img "Browsers (Chromium, Firefox, WebKit)"
    - heading "Any browser • Any platform • One API"
`);

You can generate this assertion with Test Generator and update the expected snapshot with --update-snapshots command line flag.

Learn more in the aria snapshots guide.

Test runner

Breaking: channels chrome, msedge and similar switch to new headless

This change affects you if you're using one of the following channels in your playwright.config.ts:

  • chrome, chrome-dev, chrome-beta, or chrome-canary
  • msedge, msedge-dev, msedge-beta, or msedge-canary
What do I need to do?

After updating to Playwright v1.49, run your test suite. If it still passes, you're good to go. If not, you will probably need to update your snapshots, and adapt some of your test code around PDF viewers and extensions. See issue #​33566 for more details.

Other breaking changes

  • There will be no more updates for WebKit on Ubuntu 20.04 and Debian 11. We recommend updating your OS to a later version.
  • Package @playwright/experimental-ct-vue2 will no longer be updated.
  • Package @playwright/experimental-ct-solid will no longer be updated.

Try new Chromium headless

You can opt into the new headless mode by using 'chromium' channel. As official Chrome documentation puts it:

New Headless on the other hand is the real Chrome browser, and is thus more authentic, reliable, and offers more features. This makes it more suitable for high-accuracy end-to-end web app testing or browser extension testing.

See issue #​33566 for the list of possible breakages you could encounter and more details on Chromium headless. Please file an issue if you see any problems after opting in.

import { defineConfig, devices } from '@​playwright/test';

export default defineConfig({
  projects: [
    {
      name: 'chromium',
      use: { ...devices['Desktop Chrome'], channel: 'chromium' },
    },
  ],
});

Miscellaneous

  • <canvas> elements inside a snapshot now draw a preview.
  • New method tracing.group() to visually group actions in the trace.
  • Playwright docker images switched from Node.js v20 to Node.js v22 LTS.

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 has been generated by Renovate Bot.

Copy link

netlify bot commented Nov 18, 2024

Deploy Preview for homarr-docs ready!

Name Link
🔨 Latest commit b15f3bc
🔍 Latest deploy log https://app.netlify.com/sites/homarr-docs/deploys/676569e9ad51c10008c91354
😎 Deploy Preview https://deploy-preview-133--homarr-docs.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 50 (🟢 up 3 from production)
Accessibility: 96 (no change from production)
Best Practices: 92 (no change from production)
SEO: 89 (no change from production)
PWA: -
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link

argos-ci bot commented Nov 18, 2024

The latest updates on your projects. Learn more about Argos notifications ↗︎

Build Status Details Updated (UTC)
default (Inspect) ⚠️ Changes detected (Review) 1 changed Dec 20, 2024, 1:03 PM

@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from e5df562 to cc2ab9c Compare December 5, 2024 18:41
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch from cc2ab9c to 797280f Compare December 6, 2024 13:04
@homarr-renovate homarr-renovate bot changed the title chore(deps): update dependency @playwright/test to ^1.49.0 chore(deps): update dependency @playwright/test to ^1.49.0 - autoclosed Dec 8, 2024
@homarr-renovate homarr-renovate bot closed this Dec 8, 2024
@homarr-renovate homarr-renovate bot deleted the renovate/playwright-monorepo branch December 8, 2024 18:16
@homarr-renovate homarr-renovate bot changed the title chore(deps): update dependency @playwright/test to ^1.49.0 - autoclosed chore(deps): update dependency @playwright/test to ^1.49.0 Dec 8, 2024
@homarr-renovate homarr-renovate bot reopened this Dec 8, 2024
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 10 times, most recently from 33d648e to b9051cf Compare December 10, 2024 03:25
@homarr-renovate homarr-renovate bot changed the title chore(deps): update dependency @playwright/test to ^1.49.0 chore(deps): update dependency @playwright/test to ^1.49.1 Dec 10, 2024
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 2 times, most recently from b384de8 to afdc791 Compare December 13, 2024 13:03
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch 4 times, most recently from 425ad78 to 6d6a2be Compare December 18, 2024 09:42
@homarr-renovate homarr-renovate bot force-pushed the renovate/playwright-monorepo branch from 6d6a2be to b15f3bc Compare December 20, 2024 12:58
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