Update dependency com.microsoft.playwright:playwright to v1.45.0 #1831
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.40.0
->1.45.0
Release Notes
microsoft/playwright-java (com.microsoft.playwright:playwright)
v1.45.0
Clock
Utilizing the new Clock API allows to manipulate and control time within tests to verify time-related behavior. This API covers many common scenarios, including:
See the clock guide for more details.
Miscellaneous
Method locator.setInputFiles() now supports uploading a directory for
<input type=file webkitdirectory>
elements.Multiple methods like locator.click() or locator.press() now support a
ControlOrMeta
modifier key. This key maps toMeta
on macOS and maps toControl
on Windows and Linux.New property
httpCredentials.send
in apiRequest.newContext() that allows to either always send theAuthorization
header or only send it in response to401 Unauthorized
.Playwright now supports Chromium, Firefox and WebKit on Ubuntu 24.04.
v1.45 is the last release to receive WebKit update for macOS 12 Monterey. Please update macOS to keep using the latest WebKit.
Browser Versions
This version was also tested against the following stable channels:
v1.44.0
New APIs
Accessibility assertions
assertThat(locator).toHaveAccessibleName() checks if the element has the specified accessible name:
assertThat(locator).toHaveAccessibleDescription() checks if the element has the specified accessible description:
assertThat(locator).toHaveRole() checks if the element has the specified ARIA role:
Locator handler
setNoWaitAfter
option.setTimes
option in page.addLocatorHandler() to specify maximum number of times the handler should be run.Miscellaneous options
New method formData.append() allows to specify repeating fields with the same name in
setMultipart
option inRequestOptions
:expect(page).toHaveURL(url)
now supportssetIgnoreCase
option.Browser Versions
This version was also tested against the following stable channels:
v1.43.0
New APIs
Method browserContext.clearCookies([options]) now supports filters to remove only some cookies.
New method locator.contentFrame() converts a Locator object to a FrameLocator. This can be useful when you have a Locator object obtained somewhere, and later on would like to interact with the content inside the frame.
New method frameLocator.owner() converts a FrameLocator object to a Locator. This can be useful when you have a FrameLocator object obtained somewhere, and later on would like to interact with the
iframe
element.Browser Versions
This version was also tested against the following stable channels:
v1.42.0
JUnit integration
Add new
@UsePlaywright
annotation to your test classes to start using Playwrightfixtures for Page, BrowserContext, Browser, APIRequestContext and Playwright in the
test methods.
In the example above, all three test methods use the same Browser. Each test
uses its own BrowserContext and Page.
Custom options
Implement your own
OptionsFactory
to initialize the fixtures with custom configuration.Learn more about the fixtures in our JUnit guide.
New Locator Handler
New method page.addLocatorHandler(locator, handler, handler, handler) registers a callback that will be invoked when specified element becomes visible and may block Playwright actions. The callback can get rid of the overlay. Here is an example that closes a cookie dialog when it appears.
New APIs
tagged
andoutline
.Announcements
Browser Versions
This version was also tested against the following stable channels:
v1.41.2
Highlights
https://github.com/microsoft/playwright/issues/29123 - [REGRESSION] route.continue: Protocol error (Fetch.continueRequest): Invalid InterceptionId.https://github.com/microsoft/playwright-java/issues/14688 - [BUG] File Upload leads to "Exactly one of payloads, localPaths and streams must be provided"
Browser Versions
This version was also tested against the following stable channels:
v1.41.1
Highlights
https://github.com/microsoft/playwright/issues/29067 - [REGRESSION] Codegen/Recorder: not all clicks are being actioned nor recordedhttps://github.com/microsoft/playwright/issues/290199 - [REGRESSION] trace.playwright.dev does not currently support the loading from URL
Browser Versions
This version was also tested against the following stable channels:
v1.41.0
New APIs
Page.unrouteAll()
removes all routes registered byPage.route()
andPage.routeFromHAR()
.BrowserContext.unrouteAll()
removes all routes registered byBrowserContext.route()
andBrowserContext.routeFromHAR()
.setStyle
inPage.screenshot()
andLocator.screenshot()
to add custom CSS to the page before taking a screenshot.Browser Versions
This version was also tested against the following stable channels:
Configuration
📅 Schedule: Branch creation - "after 7am and before 11am every weekday" in timezone Europe/London, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.