Skip to content

Commit e77a874

Browse files
committed
feedback
1 parent b329e72 commit e77a874

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

docs/src/release-notes-js.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Take a look at yours - maybe you'll find some tests that are spending a longer t
2020

2121
### Chrome for Testing
2222

23-
Starting with this release, Playwright switches from its own build of Chromium, to using Google's [Chrome for Testing](https://developer.chrome.com/blog/chrome-for-testing/) builds.
23+
Starting with this release, Playwright switches from Chromium, to using [Chrome for Testing](https://developer.chrome.com/blog/chrome-for-testing/) builds.
2424
Both headed and headless browsers are subject to this.
2525
Your tests should still be passing after upgrading to Playwright 1.57.
2626
We're expecting no functional changes to come from this switch - the biggest change is the new icon and title in your toolbar:
@@ -29,10 +29,12 @@ We're expecting no functional changes to come from this switch - the biggest cha
2929

3030
If you still see an unexpected behaviour change, please [file an issue](https://github.com/microsoft/playwright/issues/new).
3131

32-
On Arm64 Linux, we continue to use our own build of Chromium.
32+
On Arm64 Linux, Playwright continues to use Chromium.
3333

3434
### Waiting for webserver output
3535

36+
TODO: also add this to docs
37+
3638
[`property: TestConfig.webServer`] added a `wait` field. Pass a regular expression, and Playwright will wait until the webserver logs match it.
3739

3840
```js
@@ -66,16 +68,16 @@ You can also use it to wait for readiness of a service that doesn't expose an HT
6668
### Breaking Changes
6769
6870
- After 3 years of being deprecated, we removed `Page#accessibility` from our API. Please use other libraries such as [Axe](https://www.deque.com/axe/) if you need to test page accessibility. See our Node.js [guide](https://playwright.dev/docs/accessibility-testing) for integration with Axe.
69-
- [`method: Request.postData`], [`method: Request.postDataBuffer`] and [`method: Request.postDataJSON`] are deprecated in favour of the async [`method: Request.body`], [`method: Request.bodyBuffer`], [`method: Request.bodyJSON`].
7071
7172
### New APIs
7273
73-
* Option [`property: TestConfig.webServer`] added a `wait` field for specifying output a process kill signal other than the default `SIGKILL`.
74-
- New property [`property: TestConfig.tag`] that's useful for differentiating between CI environments.
74+
* Option [`property: TestConfig.webServer`] added a `wait` field TODO.
75+
- New property [`property: TestConfig.tag`] adds a tag to all tests in this run that's useful when using merge-report (TODO: link).
7576
- [`event: Worker.console`] event is emitted when JavaScript within the worker calls one of console API methods, e.g. console.log or console.dir. [`method: Worker.waitForEvent`] can be used to wait for it.
7677
- [`method: Locator.description`] returns locator description previously set with [`method: Locator.describe`], and `Locator.toString()` now uses the description when available.
77-
- New option [`option: Locator.click.steps`] in [`method: Locator.click`] and [`method: Locator.dragTo`] that configures the number of `mousemove` events emitted while moving the mouse pointer to the clicked element.
78-
- [Service Worker network events](./service-workers.md#network-events-and-routing) are now reported to [`class: BrowserContext`] objects and routes.
78+
- New option [`option: Locator.click.steps`] in [`method: Locator.click`] and [`method: Locator.dragTo`] that configures the number of `mousemove` events emitted while moving the mouse pointer to the target element.
79+
- [Service Worker network events](./service-workers.md#network-events-and-routing) are now reported to [`class: BrowserContext`] objects and routes. TODO: mention opt-out.
80+
- new method [`method: Request.postData`], [`method: Request.postDataBuffer`] and [`method: Request.postDataJSON`] TODO
7981
8082
### Browser Versions
8183

0 commit comments

Comments
 (0)