From 56dcab844a5af2f73ca13030ec784820180052c4 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 12 Apr 2023 17:17:36 +0200 Subject: [PATCH] docs: rename api testing (#22362) https://github.com/microsoft/playwright.dev/issues/1010 --- docs/src/{test-api-testing-js.md => api-testing-js.md} | 2 +- docs/src/release-notes-js.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) rename docs/src/{test-api-testing-js.md => api-testing-js.md} (99%) diff --git a/docs/src/test-api-testing-js.md b/docs/src/api-testing-js.md similarity index 99% rename from docs/src/test-api-testing-js.md rename to docs/src/api-testing-js.md index f4b415095b..e9df14fc7b 100644 --- a/docs/src/test-api-testing-js.md +++ b/docs/src/api-testing-js.md @@ -1,5 +1,5 @@ --- -id: test-api-testing +id: api-testing title: "API testing" --- diff --git a/docs/src/release-notes-js.md b/docs/src/release-notes-js.md index bc82f4a572..1ac0a5f95c 100644 --- a/docs/src/release-notes-js.md +++ b/docs/src/release-notes-js.md @@ -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: