Releases: microsoft/playwright-java
v1.30.0
🎉 Happy New Year 🎉
Maintenance release with bugfixes and new browsers only.
Browser Versions
- Chromium 110.0.5481.38
- Mozilla Firefox 108.0.2
- WebKit 16.4
This version was also tested against the following stable channels:
- Google Chrome 109
- Microsoft Edge 109
v1.29.0
New APIs
-
New method
Route.fetch:page.route("**/api/settings", route -> { // Fetch original settings. APIResponse response = route.fetch(); // Force settings theme to a predefined value. String body = response.text().replace("\"theme\":\"default\"", "\"theme\":\"Solorized\""); // Fulfill with modified data. route.fulfill(new Route.FulfillOptions().setResponse(response).setBody(body)); });
-
New method
Locator.allto iterate over all matching elements:// Check all checkboxes! Locator checkboxes = page.getByRole(AriaRole.CHECKBOX); for (Locator checkbox : checkboxes.all()) checkbox.check();
-
Locator.selectOptionmatches now by value or label:<select multiple> <option value="red">Red</div> <option value="green">Green</div> <option value="blue">Blue</div> </select>
element.selectOption("Red");
Browser Versions
- Chromium 109.0.5414.46
- Mozilla Firefox 107.0
- WebKit 16.4
This version was also tested against the following stable channels:
- Google Chrome 108
- Microsoft Edge 108
v1.28.1
Highlights
This patch release includes the following bug fixes:
#1130 - [Bug] Chaining Locator.getByRole() returns null
microsoft/playwright#18920 - [BUG] [expanded=false] in role selector returns elements without aria-expanded attribute
Browser Versions
- Chromium 108.0.5359.29
- Mozilla Firefox 106.0
- WebKit 16.4
This version was also tested against the following stable channels:
- Google Chrome 107
- Microsoft Edge 107
v1.28.0
Highlights
Playwright Tools
- Live Locators in CodeGen. Generate a locator for any element on the page using "Explore" tool.
New APIs
Browser Versions
- Chromium 108.0.5359.29
- Mozilla Firefox 106.0
- WebKit 16.4
This version was also tested against the following stable channels:
- Google Chrome 107
- Microsoft Edge 107
v1.27.1
Highlights
This patch release includes the following bug fixes:
microsoft/playwright#18010 - fix(generator): generate nice locators for arbitrary selectors
microsoft/playwright#17955 - [Question] Github Actions test compatibility check failed mitigation?
microsoft/playwright#17952 - fix: fix typo in treeitem role typing
Browser Versions
- Chromium 107.0.5304.18
- Mozilla Firefox 105.0.1
- WebKit 16.0
This version was also tested against the following stable channels:
- Google Chrome 106
- Microsoft Edge 106
v1.27.0
Highlights
Locators
With these new APIs writing locators is a joy:
Page.getByText(text, options)to locate by text content.Page.getByRole(role, options)to locate by ARIA role, ARIA attributes and accessible name.Page.getByLabel(label, options)to locate a form control by associated label's text.Page.getByTestId(testId)to locate an element based on itsdata-testidattribute (other attribute can be configured).Page.getByPlaceholder(placeholder, options)to locate an input by placeholder.Page.getByAltText(altText, options)to locate an element, usually image, by its text alternative.Page.getByTitle(title, options)to locate an element by its title.
page.getByLabel("User Name").fill("John");
page.getByLabel("Password").fill("secret-password");
page.getByRole(AriaRole.BUTTON, new Page.GetByRoleOptions().setName("Sign in")).click();
assertThat(page.getByText("Welcome, John!")).isVisible();All the same methods are also available on Locator, FrameLocator and Frame classes.
Other highlights
- As announced in v1.25, Ubuntu 18 will not be supported as of Dec 2022. In addition to that, there will be no WebKit updates on Ubuntu 18 starting from the next Playwright release.
Behavior Changes
-
expect(locator).hasAttribute(name, value, options)with an empty value does not match missing attribute anymore. For example, the following snippet will succeed whenbuttondoes not have adisabledattribute.assertThat(page.getByRole(AriaRole.BUTTON)).hasAttribute("disabled", "");
Browser Versions
- Chromium 107.0.5304.18
- Mozilla Firefox 105.0.1
- WebKit 16.0
This version was also tested against the following stable channels:
- Google Chrome 106
- Microsoft Edge 106
v1.26.1
Highlights
This patch includes the following bug fixes (they were reported in Playwright Python but manifested themselves in Java too):
microsoft/playwright-python#1561 - [Question]: 'c:\Users\ASUS' is not recognized as an internal or external command, operable program or batch file.
microsoft/playwright-python#1565 - [BUG] AttributeError: 'PlaywrightContextManager' object has no attribute '_playwright
Browser Versions
- Chromium 106.0.5249.30
- Mozilla Firefox 104.0
- WebKit 16.0
This version was also tested against the following stable channels:
- Google Chrome 105
- Microsoft Edge 105
v1.26.0
Highlights
Assertions
LocatorAssertions.hasText()now pierces open shadow roots.- New option
setEditableforLocatorAssertions.isEditable(). - New option
setEnabledforLocatorAssertions.isEnabled(). - New option
setVisibleforLocatorAssertions.isVisible().
Other highlights
- New option
setMaxRedirectsforAPIRequestContext.get()and others to limit redirect count. - Docker images are now using OpenJDK 17.
Behavior Change
A bunch of Playwright APIs already support the setWaitUntil(WaitUntilState.DOMCONTENTLOADED) option.
For example:
page.navigate("https://playwright.dev", new Page.NavigateOptions().setWaitUntil(WaitUntilState.DOMCONTENTLOADED));Prior to 1.26, this would wait for all iframes to fire the DOMContentLoaded event.
To align with web specification, the WaitUntilState.DOMCONTENTLOADED value only waits for the target frame to fire the 'DOMContentLoaded' event. Use setWaitUntil(WaitUntilState.LOAD) to wait for all iframes.
Browser Versions
- Chromium 106.0.5249.30
- Mozilla Firefox 104.0
- WebKit 16.0
This version was also tested against the following stable channels:
- Google Chrome 105
- Microsoft Edge 105
v1.25.0
New APIs & changes
- Default assertions timeout now can be changed with
setDefaultAssertionTimeout.
Announcements
- 🪦 This is the last release with macOS 10.15 support (deprecated as of 1.21).
⚠️ Ubuntu 18 is now deprecated and will not be supported as of Dec 2022.
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.24.1
Highlights
This patch includes the following bug fix:
microsoft/playwright#15932 - [BUG] - Install MS Edge on CI Fails
Browser Versions
- Chromium 104.0.5112.48
- Mozilla Firefox 102.0
- WebKit 16.0
This version was also tested against the following stable channels:
- Google Chrome 103
- Microsoft Edge 103
