Alex Rudenko

Results 1196 comments of Alex Rudenko

In 18.1.0, I do see the black triangle on all pages.

the demo including only the transformed SVG does not reproduce the issue: ``` import puppeteer from "puppeteer"; import fs from 'fs'; const browser = await puppeteer.launch(); const options = {...

I see, the issue needs to be filed at crbug.com/new I will try to do that next week.

It should be possible to call https://chromedevtools.github.io/devtools-protocol/tot/Browser/#method-setDownloadBehavior for Chrome to configure download behavior.

In general, I do not think we want to allow writing preferences files for Puppeteer since we consider that to be Chrome's implementation detail. But it would be great to...

Related WebDriver BiDi request https://github.com/w3c/webdriver-bidi/issues/427

@timvandermeij you can access CDP over BiDi but it is Chrome-specific. This should work for Chrome in CDP and WebDriver BiDi ``` const session = await page.createCDPSession(); await session.send('Page.setDownloadBehavior', {...

There is also a community-driven https://github.com/berstend/puppeteer-extra/tree/master/packages/puppeteer-extra-plugin-user-preferences but the best solution would be to have it in WebDriver.