A port of puppeteer running on Deno
Error: Uncaught ReferenceError: Buffer is not defined ? Buffer.from(postData).toString("base64") Reason: ```js //this happens when listening to the "request" event browser = await puppeteer.launch({headless:false}); const page = await browser.newPage(); page.setDefaultNavigationTimeout(0); page.setRequestInterception(true); page.on("request", (interceptedRequest) => { interceptedRequest.continue({ method: "POST", postData: new URLSearchParams(body).toString(), headers: { ...interceptedRequest.headers(), "Content-Type": "application/x-www-form-urlencoded", }, }); }); await page.goto(url); ```
This issue appears to be discussing a feature request or bug report related to the repository. Based on the content, it seems to be resolved. The issue was opened by itskreisler and has received 5 comments.