Alex Rudenko

Results 1196 comments of Alex Rudenko

I do not think we will add anything extra on top of that for browser downloads anytime soon.

Could you please post a minimal reproducible example with using Puppeteer only? If it does not reproduce without CodeceptJS, perhaps the issue is in there? The error indicates that the...

```js import puppeteer from "puppeteer"; const browser = await puppeteer.launch(); const page = await browser.newPage(); const elementPromise = page.waitForSelector(`xpath///input[@id="title" and contains(@value,'test')]`); await page.setContent(``); const element = await elementPromise; console.log('element found:...

Do you have a screenshot or a screen recording of what you are seeing?

Looks like a Windows-specific bug in Chrome M128 https://crbug.com/362706121

I believe this is possible with WebDriver BiDi: https://github.com/web-platform-tests/wpt/pull/47478 cc @sadym-chromium

It looks like the issue might be on the Puppeteer side? Puppeteer writes all requires settings to prefs.js on launch without reading existing prefs.js but I am not sure if...

`userDataDir` allows providing a custom directory that is not managed by puppeteer and not cleaned up by Puppeteer. Thus, the next runs will get the same profile. But Puppeteer always...

I think it is somewhat related to this issue https://bugzilla.mozilla.org/show_bug.cgi?id=1868965