justinxhan
justinxhan

Reputation: 53

Playwright test debug not showing browser

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

Answers (1)

akshat narang
akshat narang

Reputation: 89

The command you mentioned misses -- before debug. Use npx playwright test --debug instead.

Upvotes: 2

Related Questions