How is it possible to connect to already created wsEndpoint showing GUI?
Try:
<code>puppeteer.connect({
browserWSEndpoint: `ws://127.0.0.1:${port}${wsEndpoint}`,
headless: false
});
</code>
<code>puppeteer.connect({
browserWSEndpoint: `ws://127.0.0.1:${port}${wsEndpoint}`,
headless: false
});
</code>
puppeteer.connect({
browserWSEndpoint: `ws://127.0.0.1:${port}${wsEndpoint}`,
headless: false
});
Or puppeteer.launch
but not permit to set browserWSEndpoint
and is not possible to connect to already opened session.
New contributor
Jacopo Cappelli is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1