From 81050c406e3c9d25f049dca494a817bdb785d9d7 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Thu, 24 Mar 2022 15:52:04 +0100 Subject: [PATCH] chore: fix snippets in release-notes (#13033) --- docs/src/release-notes-java.md | 2 +- docs/src/release-notes-js.md | 3 --- docs/src/release-notes-python.md | 3 --- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/docs/src/release-notes-java.md b/docs/src/release-notes-java.md index d8904f7e4e..466ed7b507 100644 --- a/docs/src/release-notes-java.md +++ b/docs/src/release-notes-java.md @@ -499,7 +499,7 @@ This version of Playwright was also tested against the following stable channels - [Selecting elements based on layout](./selectors.md#selecting-elements-based-on-layout) with `:left-of()`, `:right-of()`, `:above()` and `:below()`. - Playwright now includes [command line interface](./cli.md), former playwright-cli. - ```bash js + ```bash java mvn exec:java -e -Dexec.mainClass=com.microsoft.playwright.CLI -Dexec.args="--help" ``` - [`method: Page.selectOption`] now waits for the options to be present. diff --git a/docs/src/release-notes-js.md b/docs/src/release-notes-js.md index b05ffd26a6..fd4627e5fc 100644 --- a/docs/src/release-notes-js.md +++ b/docs/src/release-notes-js.md @@ -877,9 +877,6 @@ This version of Playwright was also tested against the following stable channels ```bash js npx playwright --help ``` - ```bash python - playwright --help - ``` - [`method: Page.selectOption`] now waits for the options to be present. - New methods to [assert element state](./actionability#assertions) like [`method: Page.isEditable`]. diff --git a/docs/src/release-notes-python.md b/docs/src/release-notes-python.md index 8ee2ac1348..fe245d2a61 100644 --- a/docs/src/release-notes-python.md +++ b/docs/src/release-notes-python.md @@ -516,9 +516,6 @@ This version of Playwright was also tested against the following stable channels - [Selecting elements based on layout](./selectors.md#selecting-elements-based-on-layout) with `:left-of()`, `:right-of()`, `:above()` and `:below()`. - Playwright now includes [command line interface](./cli.md), former playwright-cli. - ```bash js - npx playwright --help - ``` ```bash python playwright --help ```