Alex Rudenko

Results 1196 comments of Alex Rudenko

@elmeerr you need to install the fonts on the docker image or use web fonts to load specific fonts independent of the system environment. Have you tested using the official...

> Could elaborate on that? assuming I have the same Chrome / fonts installed...I would expect the same result, no? some parts of Chrome are platform-specific, e.g., MacOS might switch...

@Lightning00Blade did you end up fixing this?

Looks like I am not able to reproduce anymore.

So the root cause of this is that https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-getFrameTree does not return parentId for fenced frames. We need to file a crbug as it looks like this information should be...

@whimboo @lutien adding a test for this in https://github.com/puppeteer/puppeteer/pull/12547 1) ~should it work for CDP?~ ignored for CDP that does not support wheel 2) it causes some [new timeout errors](https://github.com/puppeteer/puppeteer/actions/runs/9414611429/job/25933901379?pr=12547)...

It looks like it does not work because Puppeteer is using the mutation observer to determine when to re-query things. The workarounds are to use `await page.waitForSelector("input:focus", {visible:true})` which should...

There is already a CLI interface to download other browsers: ``` npx puppeteer browsers install firefox ``` We also want to update the configuration to allow configuring browsers for download...

So Puppeteer interprets the data as utf-8 if the browser returns the body as a string with base64Encoded=false. In the original example, the data is already encoded wrongly when Puppeteer...