Is it possible to use persistent context with headless browser false?
I'm using this setup, but the browser does not run.
PLAYWRIGHT_LAUNCH_OPTIONS = {
"headless": False,
"devtools": False,
"args": [
"--disable-extensions-except=/home/user/metamask-chrome/metamask",
"--load-extension=/home/user/metamask-chrome/metamask"
]
}
PLAYWRIGHT_CONTEXTS = {"persistent": {"user_data_dir": str(Path.home() / "playwright-persistent-context")}}