Yo, had the same issue last week! Turns out pyppeteer's default chromium version was bugged for me.
Workaround: install chromium separately and point pyppeteer to it:
```
import pyppeteer
pyppeteer.chromium_executable = "/path/to/your/chromium"
```
Saved me hours of headache. GL!
Workaround: install chromium separately and point pyppeteer to it:
```
import pyppeteer
pyppeteer.chromium_executable = "/path/to/your/chromium"
```
Saved me hours of headache. GL!
