Skip to content

Bump playwright from 1.23.1 to 1.25.1 in /browser

Bumps playwright from 1.23.1 to 1.25.1.

Release notes

Sourced from playwright's releases.

v1.25.1

Highlights

This patch includes the following bug fixes:

microsoft/playwright#16319 - [BUG] webServer.command esbuild fails with ESM and Yarn microsoft/playwright#16460 - [BUG] Component test fails on 2nd run when SSL is used microsoft/playwright#16665 - [BUG] custom selector engines don't work when running in debug mode

Browser Versions

  • Chromium 105.0.5195.19
  • Mozilla Firefox 103.0
  • WebKit 16.0

This version was also tested against the following stable channels:

  • Google Chrome 104
  • Microsoft Edge 104

v1.25.0

VSCode Extension

  • New Playwright actions view

  • Pick selector You can pick selector right from a live page, before or after running a test

  • Record new test Start recording where you left off with the new 'Record new test' feature.

  • Show & reuse browser Watch your tests running live & keep devtools open. Develop while continuously running tests.

Test Runner

  • test.step(title, body) now returns the value of the step function:

    test('should work', async ({ page }) => {
        const pageTitle = await test.step('get title', async () => {
            await page.goto('https://playwright.dev');
            return await page.title();
        });

... (truncated)

Commits


Dependabot commands
You can trigger Dependabot actions by commenting on this MR
  • $dependabot rebase will rebase this MR
  • $dependabot recreate will recreate this MR rewriting all the manual changes and resolving conflicts

Merge request reports