Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 20, 2025

Bumps playwright from 1.50.0 to 1.55.1.

Release notes

Sourced from playwright's releases.

v1.55.1

Highlights

microsoft/playwright#37479 - [Bug]: Upgrade Chromium to 140.0.7339.186. microsoft/playwright#37147 - [Regression]: Internal error: step id not found. microsoft/playwright#37146 - [Regression]: HTML reporter displays a broken chip link when there are no projects. microsoft/playwright#37137 - Revert "fix(a11y): track inert elements as hidden". microsoft/playwright#37532 - chore: do not use -k option

Browser Versions

  • Chromium 140.0.7339.186
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.55.0

New APIs

  • New Property testStepInfo.titlePath Returns the full title path starting from the test file, including test and step titles.

Codegen

  • Automatic toBeVisible() assertions: Codegen can now generate automatic toBeVisible() assertions for common UI interactions. This feature can be enabled in the Codegen settings UI.

Breaking Changes

  • ⚠️ Dropped support for Chromium extension manifest v2.

Miscellaneous

  • Added support for Debian 13 "Trixie".

Browser Versions

  • Chromium 140.0.7339.16
  • Mozilla Firefox 141.0
  • WebKit 26.0

This version was also tested against the following stable channels:

  • Google Chrome 139
  • Microsoft Edge 139

v1.54.2

Highlights

microsoft/playwright#36714 - [Regression]: Codegen is not able to launch in Administrator Terminal on Windows (ProtocolError: Protocol error) microsoft/playwright#36828 - [Regression]: Playwright Codegen keeps spamming with selected option microsoft/playwright#36810 - [Regression]: Starting Codegen with target language doesn't work anymore

Browser Versions

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by playwright-bot, a new releaser for playwright since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [playwright](https://github.com/microsoft/playwright) from 1.50.0 to 1.55.1.
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.50.0...v1.55.1)

---
updated-dependencies:
- dependency-name: playwright
  dependency-version: 1.55.1
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 20, 2025
@github-actions github-actions bot added 🤖 Dependencies Pull requests that update a dependency file 🧹 Updates labels Oct 20, 2025
Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

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

Greptile Overview

Summary

This PR updates Playwright from 1.50.0 to 1.55.1, bringing Chromium 140.0.7339.186, Firefox 141.0, and WebKit 26.0.

Key changes in Playwright 1.55.x:

  • New testStepInfo.titlePath API
  • Automatic toBeVisible() assertions in Codegen
  • Dropped support for Chromium extension manifest v2 (not applicable to this project)
  • Added Debian 13 support

Critical Issue:

  • Version mismatch across Playwright packages creates incompatibility risk. Only the main playwright package was upgraded to 1.55.1, while @playwright/test (1.50.0), playwright-core (1.50.0), playwright-firefox (1.50.0), and playwright-webkit (1.50.0) remain at the old version. This can cause runtime errors and test failures due to API mismatches between the test runner and browser drivers.

The test suite uses standard Playwright features (toBeVisible, chromium device configuration) that are compatible with the upgrade, but the version mismatch must be resolved.

Confidence Score: 2/5

  • This PR is not safe to merge due to version mismatch across Playwright packages
  • Score of 2 reflects a critical configuration issue. Only the main playwright package was upgraded to 1.55.1, while @playwright/test, playwright-core, playwright-firefox, and playwright-webkit remain at 1.50.0. This version mismatch can cause runtime errors, test failures, and API incompatibilities. All Playwright packages must be upgraded to the same version for proper functionality.
  • tests/ui-testing/package.json requires immediate attention to align all Playwright package versions

Important Files Changed

File Analysis

Filename Score Overview
tests/ui-testing/package.json 2/5 Upgraded main playwright package to 1.55.1, but @playwright/test, playwright-core, playwright-firefox, and playwright-webkit remain at 1.50.0, creating version mismatch
tests/ui-testing/package-lock.json 2/5 Updated lock file reflects playwright 1.55.1 upgrade with dependency resolution changes

Sequence Diagram

sequenceDiagram
    participant Dev as Developer/Dependabot
    participant NPM as NPM Registry
    participant PkgJson as package.json
    participant PkgLock as package-lock.json
    participant Tests as Test Suite

    Dev->>PkgJson: Update playwright: 1.50.0 → 1.55.1
    Dev->>NPM: npm install
    NPM->>PkgLock: Update dependency tree
    PkgLock-->>NPM: Resolve [email protected]
    
    Note over PkgJson,Tests: Version Mismatch Issue
    
    Tests->>PkgJson: Import @playwright/test (1.50.0)
    Tests->>PkgJson: Import playwright (1.55.1)
    Tests->>PkgJson: Import playwright-core (1.50.0)
    Tests->>PkgJson: Import playwright-firefox (1.50.0)
    Tests->>PkgJson: Import playwright-webkit (1.50.0)
    
    Note over Tests: Potential API incompatibility<br/>between test runner and browsers
    
    Tests--xDev: Risk of runtime errors
Loading

Additional Comments (1)

  1. tests/ui-testing/package.json, line 10-23 (link)

    logic: Version mismatch across Playwright packages. playwright is at 1.55.1, but @playwright/test, playwright-core, playwright-firefox, and playwright-webkit remain at 1.50.0. All Playwright packages should be upgraded to the same version to prevent compatibility issues.

1 file reviewed, 1 comment

Edit Code Review Agent Settings | Greptile

@hengfeiyang hengfeiyang merged commit 1709ce5 into main Oct 21, 2025
12 of 14 checks passed
@hengfeiyang hengfeiyang deleted the dependabot/npm_and_yarn/tests/ui-testing/playwright-1.55.1 branch October 21, 2025 06:52
@testdino-playwright-reporter
Copy link

Testdino Test Results

Status Total Passed Failed Skipped Flaky Pass Rate Duration
All tests passed 0 0 0 0 0 0% 4.5s

View Detailed Results

@hengfeiyang
Copy link
Contributor

@neha00290 after upgrade playwright-1.55.1, the CI got problem. i already rollback in another PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🤖 Dependencies Pull requests that update a dependency file dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code 🧹 Updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant