From b90b18daf3a755b27392a1e710d2d2333804fd26 Mon Sep 17 00:00:00 2001 From: Debbie O'Brien Date: Tue, 14 Feb 2023 17:09:53 +0100 Subject: [PATCH] docs: change videos to use new youtube component (#20899) --- docs/src/release-notes-js.md | 113 ++++++++++++++++++++------------- docs/src/test-components-js.md | 9 ++- 2 files changed, 74 insertions(+), 48 deletions(-) diff --git a/docs/src/release-notes-js.md b/docs/src/release-notes-js.md index 159b703f62..9ff1edeb33 100644 --- a/docs/src/release-notes-js.md +++ b/docs/src/release-notes-js.md @@ -4,6 +4,8 @@ title: "Release notes" toc_max_heading_level: 2 --- +import LiteYouTube from '@site/src/components/LiteYouTube'; + ## Version 1.30 ### Browser Versions @@ -20,6 +22,11 @@ This version was also tested against the following stable channels: ## Version 1.29 + + ### New APIs - New method [`method: Route.fetch`] and new option `json` for [`method: Route.fulfill`]: @@ -105,9 +112,10 @@ This version was also tested against the following stable channels: ## Version 1.28 -
- -
+ ### Playwright Tools @@ -168,9 +176,11 @@ This version was also tested against the following stable channels: ## Version 1.27 -
- -
+ + ### Locators @@ -235,9 +245,10 @@ This version was also tested against the following stable channels: ## Version 1.26 -
- -
+ ### Assertions @@ -282,9 +293,10 @@ This version was also tested against the following stable channels: ## Version 1.25 -
- -
+ ### VSCode Extension @@ -333,9 +345,10 @@ This version was also tested against the following stable channels: ## Version 1.24 -
- -
+ ### 🌍 Multiple Web Servers in `playwright.config.ts` @@ -460,9 +473,10 @@ beforeMount(async ({ hooksConfig }) => { ## Version 1.23 -
- -
+ ### Network Replay @@ -576,9 +590,10 @@ WebServer is now considered "ready" if request to the specified port has any of ## Version 1.22 -
- -
+ ### Highlights @@ -650,9 +665,10 @@ WebServer is now considered "ready" if request to the specified port has any of ## Version 1.21 -
- -
+ ### Highlights @@ -702,9 +718,10 @@ This version was also tested against the following stable channels: ## Version 1.20 -
- -
+ ### Highlights @@ -772,9 +789,10 @@ This version was also tested against the following stable channels: ## Version 1.19 -
- -
+ ### Playwright Test Update @@ -860,9 +878,10 @@ This version was also tested against the following stable channels: ## Version 1.18 -
- -
+ ### Locator Improvements @@ -965,9 +984,10 @@ This version was also tested against the following stable channels: ## Version 1.17 -
- -
+ ### Frame Locators @@ -1027,9 +1047,10 @@ Playwright Trace Viewer is now **available online** at https://trace.playwright. ## Version 1.16 -
- -
+ ### 🎭 Playwright Test @@ -1161,9 +1182,10 @@ This version of Playwright was also tested against the following stable channels ## Version 1.15 -
- -
+ ### 🎭 Playwright Library @@ -1222,9 +1244,10 @@ By using `npx playwright test --debug` it will enable the [Playwright Inspector] ## Version 1.14 -
- -
+ ### 🎭 Playwright Library diff --git a/docs/src/test-components-js.md b/docs/src/test-components-js.md index fd2195571a..7c80d2dab8 100644 --- a/docs/src/test-components-js.md +++ b/docs/src/test-components-js.md @@ -3,11 +3,14 @@ id: test-components title: "Experimental: components" --- +import LiteYouTube from '@site/src/components/LiteYouTube'; + Playwright Test can now test your components. -
- -
+ ## Example