playwright/packages/playwright-core/lib/server/dispatchers/cdpSessionDispatcher.js
SagarDurgade fab25b1830 amazon
Test added
2024-08-03 01:09:54 +05:30

48 lines
1.5 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CDPSessionDispatcher = void 0;
var _crConnection = require("../chromium/crConnection");
var _dispatcher = require("./dispatcher");
/**
* Copyright (c) Microsoft Corporation.
*
* Licensed under the Apache License, Version 2.0 (the 'License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
class CDPSessionDispatcher extends _dispatcher.Dispatcher {
constructor(scope, cdpSession) {
super(scope, cdpSession, 'CDPSession', {});
this._type_CDPSession = true;
this.addObjectListener(_crConnection.CDPSession.Events.Event, ({
method,
params
}) => this._dispatchEvent('event', {
method,
params
}));
this.addObjectListener(_crConnection.CDPSession.Events.Closed, () => this._dispose());
}
async send(params) {
return {
result: await this._object.send(params.method, params.params)
};
}
async detach(_, metadata) {
metadata.potentiallyClosesScope = true;
await this._object.detach();
}
}
exports.CDPSessionDispatcher = CDPSessionDispatcher;