rebrowser-playwright-core
Version:
A drop-in replacement for playwright-core patched with rebrowser-patches. It allows to pass modern automation detection tests.
48 lines (46 loc) • 1.55 kB
JavaScript
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;
;