docs: rename api testing (#22362)

https://github.com/microsoft/playwright.dev/issues/1010
This commit is contained in:
Max Schmitt 2023-04-12 17:17:36 +02:00 committed by GitHub
parent 635d180251
commit 56dcab844a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
---
id: test-api-testing
id: api-testing
title: "API testing"
---

View File

@ -915,7 +915,7 @@ This version was also tested against the following stable channels:
};
```
- [Trace Viewer](./trace-viewer) now shows [API testing requests](./test-api-testing).
- [Trace Viewer](./trace-viewer) now shows [API testing requests](./api-testing).
- [`method: Locator.highlight`] visually reveals element(s) for easier debugging.
### Announcements
@ -1235,11 +1235,11 @@ test('context fetch', async ({ request }) => {
});
```
Read more about it in our [API testing guide](./test-api-testing).
Read more about it in our [API testing guide](./api-testing).
#### Response Interception
It is now possible to do response interception by combining [API Testing](./test-api-testing) with [request interception](./network#modify-requests).
It is now possible to do response interception by combining [API Testing](./api-testing) with [request interception](./network#modify-requests).
For example, we can blur all the images on the page: