Reputation: 1
I'm starting to use Playwright with VSCode. I have it running from Test in VSCode, but the browser is not showing up. I would like to get the browser to show up, but where can I configure the browser behavior?
Upvotes: 0
Views: 1640
Reputation: 31
Not sure exactly if by "browser to show up" you refer at the fact that you need the browser to not run in headless mode.
There are two possible ways:
headless: false
Upvotes: 2
Reputation: 9357
Please install Playwright Test for VSCode extension which automatically detects if you have Playwright installed and loads the browsers.
Upvotes: 0