Reputation: 53
I am trying to debug a test of mine, but it will not pop up the browser. The command "npx playwright test debug" fails and selecting "show browser" in the test panel does not do anything. My playwright test for VSCode is on v1.0.19.
Upvotes: 0
Views: 2028
Reputation: 89
The command you mentioned misses -- before debug. Use npx playwright test --debug
instead.
Upvotes: 2