You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Awesome project! I noticed that this project uses the "pipe" option to launch and communicate with chrome via puppeteer. Is this mechanism documented somewhere, similar to the WebSocket debug interface?
The text was updated successfully, but these errors were encountered:
If you launch chrome with the --remote-debugging-pipe flag, it opens stdio pipes 3 and 4 (following stdout and stderr) that allow communication over CDP with the root browser target. You can discover other targets from there. Messages are \0 separated. PipeTransport is a 70 line adapter that shows how it works.
Awesome project! I noticed that this project uses the "pipe" option to launch and communicate with chrome via puppeteer. Is this mechanism documented somewhere, similar to the WebSocket debug interface?
The text was updated successfully, but these errors were encountered: