I am running puppeteer in non-headless mode and for most of the pages right part of the Chrome window is unused/blank:
Although I am not sure of this, but It looks like this space is supposed to be occupied by dev tools but no dev tools are actually opened.
This is how I start puppeteer (nothing fancy):
const browser = await launch({
headless: false,
args: [
"--start-maximized"
]
})
Any idea of the cause and how to fix this "dead" ui space?
