Skip to content

Bump com.microsoft.playwright:playwright from 1.62.0 to 1.63.0 in the dependencies group - #122

Merged
mfaisalkhatri merged 1 commit into
mainfrom
dependabot/maven/main/dependencies-276b161d72
Sep 21, 2026
Merged

mfaisalkhatri merged 1 commit into
mainfrom
dependabot/maven/main/dependencies-276b161d72

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 1 update: com.microsoft.playwright:playwright.

Updates com.microsoft.playwright:playwright from 1.62.0 to 1.63.0

Release notes

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

v1.63.0

🪟 Locate across frames

page.frameLocator() and frame.frameLocator() called without a selector search in any frame of the subtree, so you no longer need to locate the iframe first:

// Finds the button in any frame on the page.
page.frameLocator().getByRole(AriaRole.BUTTON).click();

The rest of the locator resolves inside a single frame, just like a regular locator, and an error is thrown when it matches elements in several frames.

👁️ Visible-only locators

New locator.visible() returns a locator that matches only visible elements. It is the recommended replacement for the :visible CSS pseudo-class:

page.locator("button").visible().click();

🖼️ Aria and screen snapshots in traces

New ariaSnapshots and screenSnapshots options of tracing.start() capture an aria snapshot and a screenshot of the page on every action:

context.tracing().start(new Tracing.StartOptions()
  .setSnapshots(true)
  .setAriaSnapshots(true)
  .setScreenSnapshots(true));

With aria and screen snapshots recorded, the new Display Aria mode in the trace viewer shows the action screenshot side by side with the aria snapshot, and hovering an aria node highlights it on the screenshot.

☕ Nullability annotations

The public API is now annotated with JSpecify nullability annotations. The com.microsoft.playwright, com.microsoft.playwright.options and com.microsoft.playwright.assertions packages are @NullMarked, and values that can be absent are marked @Nullable, so null-checking tools such as NullAway, as well as Kotlin code, can catch missing null checks at compile time.

New APIs

Browser and Context

  • httpCredentials now also accepts a list of credentials. The first entry matching the request origin is used, and entries without an origin match any request.
  • New option opfs includes the origin private file system in the storage state, so it can be persisted and restored into later contexts.

... (truncated)

Commits

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 1 update: [com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java).


Updates `com.microsoft.playwright:playwright` from 1.62.0 to 1.63.0
- [Release notes](https://github.com/microsoft/playwright-java/releases)
- [Commits](microsoft/playwright-java@v1.62.0...v1.63.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Sep 21, 2026
@mfaisalkhatri
mfaisalkhatri merged commit bf59c4a into main Sep 21, 2026
1 check passed
@mfaisalkhatri
mfaisalkhatri deleted the dependabot/maven/main/dependencies-276b161d72 branch September 21, 2026 09:31
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