Kapil Javeri
Kapil Javeri
DecompressionHandler had the null check after checking for Headers for ContentEncoding which would result in a `NullReferenceException`. Just inverting those checks.
### Minimal, reproducible example ```TypeScript import puppeteer from 'puppeteer'; (async () => { const browser = await puppeteer.launch(); const page = await browser.newPage(); // await page.goto('internal-url'); await page.waitForSelector('aria/First Name[role="textbox"]'); await...
https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/which Issue found here - https://github.com/testing-library/user-event/issues/1137 It's recommended to switch over to `event.code` or `event.key` instead - https://github.com/testing-library/user-event/issues/842#issuecomment-1019528148