puppeteer-extra-plugin-proxy
puppeteer-extra-plugin-proxy copied to clipboard
why does this exist?
is there any advantage over launching the puppeteer without a plugin with proxy config like this?
this.browser = await puppeteer.launch({args: [`--proxy-server=${proxyUrl}`], headless: 'new'});
this.page = await this.browser.newPage();
this.page.authenticate({ username, password });