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