If I have an existing Google Chrome window open, I\'d like to tell puppeteer to open a new tab instead of opening a new window. Is there a way to do that? is there some opti
const browser = puppeteer.launch(); const page = browser.newPage();
This will actually open a new tab on your current browser instance. You can checkout the page class docs here and the browser class docs here.