puppeteer-cluster icon indicating copy to clipboard operation
puppeteer-cluster copied to clipboard

How to set args like .launch({ args: [] }) ?

Open damartripamungkas opened this issue 8 months ago • 3 comments

How to set args like .launch({ args: [] }) ? i dont see if this package support that

damartripamungkas avatar Oct 28 '23 07:10 damartripamungkas

this.cluster = await Cluster.launch({ puppeteerOptions: { args: [] } });

Firefox2005 avatar Dec 01 '23 15:12 Firefox2005

this.cluster = await Cluster.launch({ puppeteerOptions: { args: [] } });

ok thanks i will try

damartripamungkas avatar Dec 01 '23 16:12 damartripamungkas

It clearly states it in https://github.com/thomasdondorf/puppeteer-cluster#clusterlaunchoptions You can just look at the puppeteerOptions value that states it is the puppeteer.launch arg

Harm-Nullix avatar Jan 10 '24 09:01 Harm-Nullix