Closed as not planned
Description
Hi!
Could someone tell me, whether there's a possibility to set proxy not only for a chromium instance, but also for a page?
So the current solution is:
const browser = await puppeteer.launch({ args: [ '--proxy-server=127.0.0.1:9876' ] });
Desired solution in my case is something like this:
const page = await browser.newPage({ args: [ '--proxy-server=127.0.0.1:9876' ] });
With proxy per page there's a possibility to run a single chrome instance, but use different proxies depending on page.
Thanks in advance!