From ff91858bd39231ce3e8e27c8e52772370dea48a8 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Wed, 3 Mar 2021 15:17:22 -0800 Subject: [PATCH] docs: instpector launch params for java (#5711) --- docs/src/inspector.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/src/inspector.md b/docs/src/inspector.md index 1830debbba..01b67d5227 100644 --- a/docs/src/inspector.md +++ b/docs/src/inspector.md @@ -24,6 +24,16 @@ configures Playwright for debugging and opens the inspector. $ npm run test ``` + ```sh java + # Linux/macOS + $ PWDEBUG=1 PLAYWRIGHT_JAVA_SRC= mvn test + + # Windows + $ set PLAYWRIGHT_JAVA_SRC= + $ set PWDEBUG=1 + $ mvn test + ``` + ```sh python # Linux/macOS $ PWDEBUG=1 pytest -s