Alex Rudenko

Results 1196 comments of Alex Rudenko

@whimboo what's the use case? We could use puppeteer with WebDriver BiDi + Firefox if you need basic JS evaluation to a basic type.

v22.8.0 is only tested against the Chromium version 124.0.6367.91 Can you reproduce the issue using the Chrome for Testing binary that is downloaded by Puppeteer by default? Could you also...

I am able to reproduce on a Mac using the sleep action. It looks like the websocket connection is disconnected (browser.connected === false when the error happens and also the...

For future reference, here is the stacktrace of the socket disconnect: ``` ➜ pptr-test node reset.cjs [32873:259:0512/112546.673131:ERROR:chrome_browser_cloud_management_controller.cc(161)] Cloud management controller initialization aborted as CBCM is not enabled. Please use the...

As a workaround, use `pipe: true` when launching the browser to avoid using sockets for communication. In general, it looks like standby/sleep might be severing network connections as expected (?)...

The connection is also closed for a bare ws client: ``` const WebSocket = require('ws'); const ws = new WebSocket(process.argv[2]); // pass the DevTools web socket server URL ws.on('close', ()...

It does not happen for a bare ws server: ``` const WebSocket = require('ws'); const wss = new WebSocket.WebSocketServer({ port: 8080 }); wss.on('connection', function connection(ws) { ws.on('error', console.error); ws.on('message', function...

@AntonioFavero is your problem also related to standby/reconnection? if not, it is not the same issue, and please file a separate one including a minimal reproducible example.

Could you please provide a test extensions? Extensions that we use for testing does not exhibit this behavior.