Reputation: 328
I am trying to crawl about 50 pages with puppeteer, and right now I am doing one after another in a single browser, single page. To make this faster, should I use more pages or more browsers?
Upvotes: 1
Views: 859
Reputation: 84
I don't think you want to use either:
I think you want to use Browser Contexts. Think of a browser context as an incognito window - you can open it quickly, but it doesn't share history, cookies, etc. with other contexts.
Upvotes: 1