简体   繁体   中英

Playwright - how to turn off PWDEBUG?

I have a simple question.

How to turn off the PWDEBUG on Playwright when running 'npx playwright test'

I have added a $env:PWDEBUG=1 in VS Terminal and all the time the tests are running into debugging mode. I just want the tests to run.

Any ideas?

You can unset the environment variable by the following command

$env:PWDEBUG=""

this should run the tests in normal mode.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM