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

fix: Update getAllCookie.js

Open natpacket opened this issue 2 years ago • 1 comments

here puppeteer-proxy/src/routines/getAllCookies.js: we can see the code:

return page._client.send('Network.getAllCookies');

but there is no longer _client attribute with puppeteer 14.0.0. so,i do this:

return page._client().send('Network.getAllCookies');

it can be running well

natpacket avatar Aug 03 '22 04:08 natpacket