natpacket

Results 2 issues of natpacket

here [puppeteer-proxy](https://github.com/natpacket/puppeteer-proxy)/[src](https://github.com/natpacket/puppeteer-proxy/tree/master/src)/[routines](https://github.com/natpacket/puppeteer-proxy/tree/master/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...

here [puppeteer-proxy](https://github.com/natpacket/puppeteer-proxy)/[src](https://github.com/natpacket/puppeteer-proxy/tree/master/src)/[routines](https://github.com/natpacket/puppeteer-proxy/tree/master/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...