Is it safe/supported to run multiple instances of Puppeteer at the same time, either at
- the process level (multiple
node screenshot.js
at the same time) or - at the script level (multiple
puppeteer.launch()
at the same time)?
What are the recommended settings/limits on parallel processes?
(In my tests, (1) seems to work fine, but I'm wondering about the reliability of Puppeteer's interactions with the single (?) instance of Chrome. I haven't tried (2) but that seems less likely to work out.)