Alex Rudenko
Alex Rudenko
Thanks, I got a bit confused by DevTools, it actually does not handle this update well (still shows about:blank in the tree): Edit: filed https://crbug.com/370690261
We have landed the change in the WebDriver BiDi spec so this change is ready to be merged from our perspective. cc @domenic
It seems to be flaky, sometimes I do get a response for the second fetch.
Adding `await page.setBypassServiceWorker(true)` seems to help. I think the page uses a service worker to serve subsequent requests, and this has some different timing/different effects with interception.
> What does setBypassServiceWorker do? The documentation is very brief. Does it make it so that service worker requests are not intercepted? so network requests could be handled by the...
Btw I think navigation happens fine in this case but just the network request is missing (Puppeteer throws an error if navigation fails).
`launch` CLI command does not forward arguments to the binary so I do not think that is expected to work currently
params there totally make sense (probably we could also make `--` optional), we just have not gotten to it so far. We use yargs and we need to configure it...
@Lightning00Blade is this ready?
Puppeteer downloads Chrome and chrome-headless-shell binaries by default. It looks like you only configure the download URL for Chrome and also you do not skip the shell download? Could you...