Alex Rudenko

Results 1196 comments of Alex Rudenko

@mostafa-hisham could you check if you see the difference with 21.1.1 to 21.2.0? is it the same as https://github.com/puppeteer/puppeteer/issues/11944 ?

@mostafa-hisham could you please also clarify if the increased CPU usage is for the node process running Puppeteer or for the browser process(es)?

Thanks for the details, could you reproduce the issue outside of the server? Because I won't be able to accurately measure cpu usage increase without the actual workload and the...

So I finally got a chance to run it. I have reduced the script a bit: ``` import puppeteer from "puppeteer"; async function main() { const browser = await puppeteer.launch({...

In the latest version, my average time is 1014 but it is likely the other issue.

@MathieuLamiot yes, you can specify the path to the browser you want to run via `executablePath` in the launch command. That should generally works unless there were some changes in...

Did you have a chance to investigate where the CPU usage coming from and create a locally reproducible script?

@MathieuLamiot it would be helpful to figure out what process of the browser causes high usage or have a minimal example that reproduces the increased cpu usage. In the notes,...

@mostafa-hisham so it looks like coverage in Chrome started to take more time? it is probably related to it being more [detailed](https://github.com/puppeteer/puppeteer/issues/12524#issuecomment-2173734102). Also, for the latest versions we should use...

I had to update the script but I do not observe the same results: ``` import puppeteer from "puppeteer"; import fs from 'fs'; const browser = await puppeteer.launch(); const options...