Skip to content

build(deps): bump com.microsoft.playwright:playwright from 1.59.0 to 1.62.0 - #156

Merged
paul-brooks merged 1 commit into
masterfrom
dependabot/gradle/com.microsoft.playwright-playwright-1.61.0
Aug 23, 2026
Merged

build(deps): bump com.microsoft.playwright:playwright from 1.59.0 to 1.62.0#156
paul-brooks merged 1 commit into
masterfrom
dependabot/gradle/com.microsoft.playwright-playwright-1.61.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 6, 2026

Copy link
Copy Markdown
Contributor

Bumps com.microsoft.playwright:playwright from 1.59.0 to 1.62.0.

Release notes

Sourced from com.microsoft.playwright:playwright's releases.

v1.62.0

🖼️ WebP screenshots

page.screenshot() and locator.screenshot() can now capture screenshots in the WebP format. Playwright infers the format from a .webp file extension, or you can set the type explicitly. Quality 100 (the default) is lossless, while lower values use lossy compression:

page.screenshot(new Page.ScreenshotOptions()
    .setPath(Paths.get("homepage.webp"))
    .setQuality(50));

New APIs

  • New scroll option ("auto" | "none") on actions to opt out of Playwright's automatic scrolling into view.
  • New locator.waitForFunction() waits until a function called with the matching element returns a truthy value.
  • New apiResponse.timing() returns resource timing information for an API response.

Announcements

  • 📋 The clipboard is now isolated from the operating system in headless mode, so tests that use navigator.clipboard no longer read or overwrite the clipboard of the machine running them.
  • ⚠️ Debian 11 is not supported anymore.

Browser Versions

  • Chromium 151.0.7922.34
  • Mozilla Firefox 153.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 151
  • Microsoft Edge 151

v1.61.0

🔑 WebAuthn passkeys

New Credentials virtual authenticator, available via browserContext.credentials, lets tests register passkeys and answer navigator.credentials.create() / navigator.credentials.get() ceremonies in the page — no real hardware key required, works in all browsers:

BrowserContext context = browser.newContext();
// Seed a passkey your backend provisioned for a test user.
context.credentials().create("example.com", new Credentials.CreateOptions()
.setId(credentialId)
.setUserHandle(userHandle)
.setPrivateKey(privateKey)
.setPublicKey(publicKey));
context.credentials().install();
Page page = context.newPage();
page.navigate("https://example.com/login");
// The page's navigator.credentials.get() is answered with the seeded passkey.

... (truncated)

Commits
  • ce430e3 chore(release): mark 1.62.0 (#1958)
  • d76dc9c chore(driver): cherry-pick 1.62.1 roll (#1961)
  • 7de72a6 chore(driver): roll to 1.62.0 (#1954)
  • 24a70ef chore: roll to 1.62.0-alpha-2026-07-22 (#1951)
  • 32cf6cd chore(deps): bump the actions group with 2 updates (#1945)
  • e5135db chore: Upgrade EsrpRelease task version to 11 (#1943)
  • 6234e06 feat(docker): pre-extract the driver in images to avoid /tmp unpacking (#1938)
  • 20e4edd chore: roll driver to 1.61.1 (#1941)
  • d2d29d4 feat(driver): bundle playwright-core in driver, keep only Node.js in driver-b...
  • 43d2601 fix(fetch): serialize LocalDate in post data (#1934)
  • Additional commits viewable in compare view

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Jul 6, 2026
@paul-brooks

Copy link
Copy Markdown
Contributor

@dependabot rebase

Bumps [com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java) from 1.59.0 to 1.62.0.
- [Release notes](https://github.com/microsoft/playwright-java/releases)
- [Commits](microsoft/playwright-java@v1.59.0...v1.62.0)

---
updated-dependencies:
- dependency-name: com.microsoft.playwright:playwright
  dependency-version: 1.61.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump com.microsoft.playwright:playwright from 1.59.0 to 1.61.0 build(deps): bump com.microsoft.playwright:playwright from 1.59.0 to 1.62.0 Aug 23, 2026
@dependabot
dependabot Bot force-pushed the dependabot/gradle/com.microsoft.playwright-playwright-1.61.0 branch from 9c61601 to d3c0aa0 Compare August 23, 2026 21:50
@paul-brooks
paul-brooks merged commit b29fe4e into master Aug 23, 2026
1 check passed
@paul-brooks
paul-brooks deleted the dependabot/gradle/com.microsoft.playwright-playwright-1.61.0 branch August 23, 2026 22:26
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 java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant