docs: release notes for other ports (#9681)
This commit is contained in:
parent
0a7e1c90eb
commit
df188d5876
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue