From 763facc9079e3b650219eed5ffbff90803fdb1ab Mon Sep 17 00:00:00 2001 From: Nikolay Vitkov Date: Fri, 26 Apr 2024 15:08:47 +0200 Subject: [PATCH] fix(cdp): throw on closed connection --- packages/puppeteer-core/src/cdp/Connection.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/puppeteer-core/src/cdp/Connection.ts b/packages/puppeteer-core/src/cdp/Connection.ts index 3c565341b3826..9495650f7b551 100644 --- a/packages/puppeteer-core/src/cdp/Connection.ts +++ b/packages/puppeteer-core/src/cdp/Connection.ts @@ -18,6 +18,7 @@ import type {ConnectionTransport} from '../common/ConnectionTransport.js'; import {debug} from '../common/Debug.js'; import {TargetCloseError} from '../common/Errors.js'; import {EventEmitter} from '../common/EventEmitter.js'; +import {assert} from '../util/assert.js'; import {createProtocolErrorMessage} from '../util/ErrorLike.js'; import {CdpCDPSession} from './CDPSession.js'; @@ -117,6 +118,8 @@ export class Connection extends EventEmitter { sessionId?: string, options?: CommandOptions ): Promise { + assert(!this.#closed, 'Protocol error: Connection closed.'); + return callbacks.create(method, options?.timeout ?? this.#timeout, id => { const stringifiedMessage = JSON.stringify({ method,