Alex Rudenko
Alex Rudenko
WebDriver BiDi does not set any limits of the PDF size but imagine there could various implementation limits on the browser side as well as on the transport level. I...
cc @sadym-chromium @whimboo maybe we need a dedicated issue to find a solution to streaming data / transferring blobs more efficiently
we use the ws library with the maxPayload setting to 256 MB https://github.com/puppeteer/puppeteer/blob/main/packages/puppeteer-core/src/node/NodeWebSocketTransport.ts I am not sure if it does concatenation. For now, the workaround is to provide a custom...
let's not mark it as a breaking change because we are not ready for a breaking change release yet.
CDP / WebDriver BiDi do not offer a way to do this currently. In some configurations like headless shell the current page does not exist. You should use `browser.pages()` to...
Could you please file a feature request instead and provide details about your use case? cc @natorion
The CDP method is used to fix another class of issues caused by the Web API and it was changed in https://github.com/puppeteer/puppeteer/pull/8631 IIRC. The documentation for DOM.scrollIntoViewIfNeeded says that it...
[These lines](https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/inspector/inspector_dom_agent.cc;l=3039;drc=4851f65faec3ba48a79fdcb32e633fd155ce7cd1) should be CenterAlways to match the behavior of `element.scrollIntoView({block: 'center',inline: 'center',behavior: 'instant'})`
Thanks for the feature request! I think it is useful to have dedicated tools to debug styles but first we need to think about a general mechanism for inspecting DOM...
Thanks for the detailed feedback! Did you encounter any issues related to the fact that the MCP server does not expose the actual DOM tree to the client (and only...