Was working pertfectly until today. Chromium is opening, but as soon as the WhatsApp page finishes loading, it crashes abruptly.
Whatsapp-web.js lib version: "github:pedroslopez/whatsapp-web.js#webpack-exodus"
Using cache: I tried both “Local” and “None”
Connecting normal.
Using chronium.
Error: error: new Errors_js_1.ProtocolError(),
^
ProtocolError: Protocol error (Runtime.callFunctionOn): Execution context was destroyed.
Client:
const cliente = new Client({
authStrategy: new LocalAuth({
dataPath: './../src/ws_session/',
}),
qrMaxRetries: 3,
puppeteer: {
headless: false,
executablePath: CHRONIUM_PATH,
args: [
"--no-sandbox",
"--no-first-run",
"--disable-setuid-sandbox",
"--disable-dev-shm-usage",
"--disable-accelerated-2d-canvas",
"--disable-gpu",
"--single-process",
"--no-zygote",
],
},
});
Any ideas will be appreciated.