mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
docs: update links to assertions docs (#12662)
This commit is contained in:
parent
4d3d0e2bda
commit
10bf5f3e49
@ -54,7 +54,7 @@ Read more about it in our [API testing guide](./api-testing).
|
||||
|
||||
### Web-First Assertions
|
||||
|
||||
Playwright for Java 1.18 introduces [Web-First Assertions](./api/class-playwrightassertions).
|
||||
Playwright for Java 1.18 introduces [Web-First Assertions](./api/test-assertions).
|
||||
|
||||
Consider the following example:
|
||||
|
||||
@ -78,7 +78,7 @@ fetched Node has the `"Submitted"` text. It will be re-fetching the node and
|
||||
checking it over and over, until the condition is met or until the timeout is
|
||||
reached. You can pass this timeout as an option.
|
||||
|
||||
Read more in [our documentation](./api/class-playwrightassertions).
|
||||
Read more in [our documentation](./api/test-assertions).
|
||||
|
||||
### Locator Improvements
|
||||
|
||||
|
||||
@ -178,7 +178,7 @@ This version was also tested against the following stable channels:
|
||||
### Locator Improvements
|
||||
|
||||
- [`method: Locator.dragTo`]
|
||||
- [`expect(locator).toBeChecked({ checked })`](./api/class-playwrightassertions#locator-assertions-to-be-checked)
|
||||
- [`expect(locator).toBeChecked({ checked })`](./test-assertions#locator-assertions-to-be-checked)
|
||||
- Each locator can now be optionally filtered by the text it contains:
|
||||
```js
|
||||
await page.locator('li', { hasText: 'my item' }).locator('button').click();
|
||||
@ -188,7 +188,7 @@ This version was also tested against the following stable channels:
|
||||
|
||||
### Testing API improvements
|
||||
|
||||
- [`expect(response).toBeOK()`](./api/class-playwrightassertions)
|
||||
- [`expect(response).toBeOK()`](./test-assertions)
|
||||
- [`testInfo.attach()`](./api/class-testinfo#test-info-attach)
|
||||
- [`test.info()`](./api/class-test#test-info)
|
||||
|
||||
|
||||
@ -64,7 +64,7 @@ Read more in [our documentation](./api/class-apirequestcontext).
|
||||
|
||||
### Web-First Assertions
|
||||
|
||||
Playwright for Python 1.18 introduces [Web-First Assertions](./api/class-playwrightassertions).
|
||||
Playwright for Python 1.18 introduces [Web-First Assertions](./api/test-assertions).
|
||||
|
||||
Consider the following example:
|
||||
|
||||
@ -91,7 +91,7 @@ fetched Node has the `"Submitted"` text. It will be re-fetching the node and
|
||||
checking it over and over, until the condition is met or until the timeout is
|
||||
reached. You can pass this timeout as an option.
|
||||
|
||||
Read more in [our documentation](./api/class-playwrightassertions).
|
||||
Read more in [our documentation](./api/test-assertions).
|
||||
|
||||
### Locator Improvements
|
||||
|
||||
|
||||
@ -4,7 +4,7 @@ title: "Verification"
|
||||
---
|
||||
|
||||
:::caution
|
||||
We recommend [Web-First Assertions](./api/class-playwrightassertions) that automatically retry until the expected condition is met instead. This helps reducing the flakiness of the tests.
|
||||
We recommend [Web-First Assertions](./test-assertions) that automatically retry until the expected condition is met instead. This helps reducing the flakiness of the tests.
|
||||
:::
|
||||
|
||||
<!-- TOC -->
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user