docs: instpector launch params for java (#5711)

This commit is contained in:
Yury Semikhatsky 2021-03-03 15:17:22 -08:00 committed by GitHub
parent 217a593e1d
commit ff91858bd3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,6 +24,16 @@ configures Playwright for debugging and opens the inspector.
$ npm run test
```
```sh java
# Linux/macOS
$ PWDEBUG=1 PLAYWRIGHT_JAVA_SRC=<java src root> mvn test
# Windows
$ set PLAYWRIGHT_JAVA_SRC=<java src root>
$ set PWDEBUG=1
$ mvn test
```
```sh python
# Linux/macOS
$ PWDEBUG=1 pytest -s