docs: release notes for other ports (#9681)

This commit is contained in:
Andrey Lushnikov 2021-10-21 11:13:19 -07:00 committed by GitHub
parent 0a7e1c90eb
commit df188d5876
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 111 additions and 0 deletions

View file

@ -5,6 +5,41 @@ title: "Release notes"
<!-- TOC -->
## Version 1.16
### 🎭 Playwright Library
#### Locator.WaitForAsync
Wait for a locator to resolve to a single element with a given state.
Defaults to the `state: 'visible'`.
```csharp
var orderSent = page.Locator("#order-sent");
orderSent.WaitForAsync();
```
Read more about [`method: Locator.waitFor`].
### 🎭 Playwright Trace Viewer
- run trace viewer with `npx playwright show-trace` and drop trace files to the trace viewer PWA
- better visual attribution of action targets
Read more about [Trace Viewer](./trace-viewer).
### Browser Versions
- Chromium 97.0.4666.0
- Mozilla Firefox 93.0
- WebKit 15.4
This version of Playwright was also tested against the following stable channels:
- Google Chrome 94
- Microsoft Edge 94
## Version 1.15
### 🖱️ Mouse Wheel

View file

@ -5,6 +5,40 @@ title: "Release notes"
<!-- TOC -->
## Version 1.16
### 🎭 Playwright Library
#### Locator.waitFor
Wait for a locator to resolve to a single element with a given state.
Defaults to the `state: 'visible'`.
```java
Locator orderSent = page.locator("#order-sent");
orderSent.waitFor();
```
Read more about [`method: Locator.waitFor`].
### 🎭 Playwright Trace Viewer
- run trace viewer with `npx playwright show-trace` and drop trace files to the trace viewer PWA
- better visual attribution of action targets
Read more about [Trace Viewer](./trace-viewer).
### Browser Versions
- Chromium 97.0.4666.0
- Mozilla Firefox 93.0
- WebKit 15.4
This version of Playwright was also tested against the following stable channels:
- Google Chrome 94
- Microsoft Edge 94
## Version 1.15
### 🖱️ Mouse Wheel

View file

@ -5,6 +5,48 @@ title: "Release notes"
<!-- TOC -->
## Version 1.16
### 🎭 Playwright Library
#### `locator.wait_for`
Wait for a locator to resolve to a single element with a given state.
Defaults to the `state: 'visible'`.
Comes especially handy when working with lists:
```python
order_sent = page.locator("#order-sent")
order_sent.wait_for()
```
Read more about [`method: Locator.waitFor`].
### Docker support for Arm64
Playwright Docker image is now published for Arm64 so it can be used on Apple Silicon.
Read more about [Docker integration](./docker).
### 🎭 Playwright Trace Viewer
- run trace viewer with `npx playwright show-trace` and drop trace files to the trace viewer PWA
- better visual attribution of action targets
Read more about [Trace Viewer](./trace-viewer).
### Browser Versions
- Chromium 97.0.4666.0
- Mozilla Firefox 93.0
- WebKit 15.4
This version of Playwright was also tested against the following stable channels:
- Google Chrome 94
- Microsoft Edge 94
## Version 1.15
### 🖱️ Mouse Wheel