2020-06-25 16:05:36 -07:00
|
|
|
/**
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-08-24 14:48:03 -07:00
|
|
|
import { Browser } from '../server/browser';
|
|
|
|
|
import * as channels from '../protocol/channels';
|
2020-06-25 16:05:36 -07:00
|
|
|
import { BrowserContextDispatcher } from './browserContextDispatcher';
|
2020-07-07 18:47:00 -07:00
|
|
|
import { CDPSessionDispatcher } from './cdpSessionDispatcher';
|
2020-06-30 22:21:17 -07:00
|
|
|
import { Dispatcher, DispatcherScope } from './dispatcher';
|
2020-08-24 14:48:03 -07:00
|
|
|
import { CRBrowser } from '../server/chromium/crBrowser';
|
2020-07-09 15:33:01 -07:00
|
|
|
import { PageDispatcher } from './pageDispatcher';
|
2022-02-10 16:36:23 -08:00
|
|
|
import { CallMetadata, internalCallMetadata } from '../server/instrumentation';
|
|
|
|
|
import { BrowserContext } from '../server/browserContext';
|
|
|
|
|
import { Selectors } from '../server/selectors';
|
2020-06-25 16:05:36 -07:00
|
|
|
|
2021-11-17 15:26:01 -08:00
|
|
|
export class BrowserDispatcher extends Dispatcher<Browser, channels.BrowserChannel> implements channels.BrowserChannel {
|
|
|
|
|
_type_Browser = true;
|
2020-09-02 16:15:43 -07:00
|
|
|
constructor(scope: DispatcherScope, browser: Browser) {
|
2021-01-29 16:00:56 -08:00
|
|
|
super(scope, browser, 'Browser', { version: browser.version(), name: browser.options.name }, true);
|
2020-08-21 16:26:33 -07:00
|
|
|
browser.on(Browser.Events.Disconnected, () => this._didClose());
|
2020-08-13 13:24:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_didClose() {
|
|
|
|
|
this._dispatchEvent('close');
|
|
|
|
|
this._dispose();
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
|
|
|
|
|
2021-02-09 14:44:48 -08:00
|
|
|
async newContext(params: channels.BrowserNewContextParams, metadata: CallMetadata): Promise<channels.BrowserNewContextResult> {
|
2020-11-13 14:24:53 -08:00
|
|
|
const context = await this._object.newContext(params);
|
|
|
|
|
if (params.storageState)
|
2021-02-09 14:44:48 -08:00
|
|
|
await context.setStorageState(metadata, params.storageState);
|
2020-11-13 14:24:53 -08:00
|
|
|
return { context: new BrowserContextDispatcher(this._scope, context) };
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async close(): Promise<void> {
|
2020-06-26 17:24:21 -07:00
|
|
|
await this._object.close();
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
2020-07-07 18:47:00 -07:00
|
|
|
|
2021-04-08 18:56:09 -07:00
|
|
|
async killForTests(): Promise<void> {
|
|
|
|
|
await this._object.killForTests();
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-02 09:47:14 +08:00
|
|
|
async newBrowserCDPSession(): Promise<channels.BrowserNewBrowserCDPSessionResult> {
|
2021-01-29 16:00:56 -08:00
|
|
|
if (!this._object.options.isChromium)
|
2020-08-28 10:23:02 -07:00
|
|
|
throw new Error(`CDP session is only available in Chromium`);
|
2020-07-07 18:47:00 -07:00
|
|
|
const crBrowser = this._object as CRBrowser;
|
2020-07-14 18:26:50 -07:00
|
|
|
return { session: new CDPSessionDispatcher(this._scope, await crBrowser.newBrowserCDPSession()) };
|
2020-07-07 18:47:00 -07:00
|
|
|
}
|
2020-07-09 15:33:01 -07:00
|
|
|
|
2021-04-02 09:47:14 +08:00
|
|
|
async startTracing(params: channels.BrowserStartTracingParams): Promise<void> {
|
2021-01-29 16:00:56 -08:00
|
|
|
if (!this._object.options.isChromium)
|
2020-08-28 10:23:02 -07:00
|
|
|
throw new Error(`Tracing is only available in Chromium`);
|
2020-07-09 15:33:01 -07:00
|
|
|
const crBrowser = this._object as CRBrowser;
|
2020-08-20 11:25:33 -07:00
|
|
|
await crBrowser.startTracing(params.page ? (params.page as PageDispatcher)._object : undefined, params);
|
2020-07-09 15:33:01 -07:00
|
|
|
}
|
|
|
|
|
|
2021-04-02 09:47:14 +08:00
|
|
|
async stopTracing(): Promise<channels.BrowserStopTracingResult> {
|
2021-01-29 16:00:56 -08:00
|
|
|
if (!this._object.options.isChromium)
|
2020-08-28 10:23:02 -07:00
|
|
|
throw new Error(`Tracing is only available in Chromium`);
|
2020-07-09 15:33:01 -07:00
|
|
|
const crBrowser = this._object as CRBrowser;
|
|
|
|
|
const buffer = await crBrowser.stopTracing();
|
2020-07-14 18:26:50 -07:00
|
|
|
return { binary: buffer.toString('base64') };
|
2020-07-09 15:33:01 -07:00
|
|
|
}
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
2022-02-10 16:36:23 -08:00
|
|
|
|
|
|
|
|
// This class implements multiplexing browser dispatchers over a single Browser instance.
|
|
|
|
|
export class ConnectedBrowserDispatcher extends Dispatcher<Browser, channels.BrowserChannel> implements channels.BrowserChannel {
|
|
|
|
|
_type_Browser = true;
|
|
|
|
|
private _contexts = new Set<BrowserContext>();
|
|
|
|
|
readonly selectors: Selectors;
|
|
|
|
|
|
|
|
|
|
constructor(scope: DispatcherScope, browser: Browser) {
|
|
|
|
|
super(scope, browser, 'Browser', { version: browser.version(), name: browser.options.name }, true);
|
|
|
|
|
// When we have a remotely-connected browser, each client gets a fresh Selector instance,
|
|
|
|
|
// so that two clients do not interfere between each other.
|
|
|
|
|
this.selectors = new Selectors();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async newContext(params: channels.BrowserNewContextParams, metadata: CallMetadata): Promise<channels.BrowserNewContextResult> {
|
|
|
|
|
if (params.recordVideo)
|
|
|
|
|
params.recordVideo.dir = this._object.options.artifactsDir;
|
|
|
|
|
const context = await this._object.newContext(params);
|
|
|
|
|
this._contexts.add(context);
|
|
|
|
|
context._setSelectors(this.selectors);
|
|
|
|
|
context.on(BrowserContext.Events.Close, () => this._contexts.delete(context));
|
|
|
|
|
if (params.storageState)
|
|
|
|
|
await context.setStorageState(metadata, params.storageState);
|
|
|
|
|
return { context: new BrowserContextDispatcher(this._scope, context) };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async close(): Promise<void> {
|
|
|
|
|
// Client should not send us Browser.close.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async killForTests(): Promise<void> {
|
|
|
|
|
// Client should not send us Browser.killForTests.
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async newBrowserCDPSession(): Promise<channels.BrowserNewBrowserCDPSessionResult> {
|
|
|
|
|
if (!this._object.options.isChromium)
|
|
|
|
|
throw new Error(`CDP session is only available in Chromium`);
|
|
|
|
|
const crBrowser = this._object as CRBrowser;
|
|
|
|
|
return { session: new CDPSessionDispatcher(this._scope, await crBrowser.newBrowserCDPSession()) };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async startTracing(params: channels.BrowserStartTracingParams): Promise<void> {
|
|
|
|
|
if (!this._object.options.isChromium)
|
|
|
|
|
throw new Error(`Tracing is only available in Chromium`);
|
|
|
|
|
const crBrowser = this._object as CRBrowser;
|
|
|
|
|
await crBrowser.startTracing(params.page ? (params.page as PageDispatcher)._object : undefined, params);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async stopTracing(): Promise<channels.BrowserStopTracingResult> {
|
|
|
|
|
if (!this._object.options.isChromium)
|
|
|
|
|
throw new Error(`Tracing is only available in Chromium`);
|
|
|
|
|
const crBrowser = this._object as CRBrowser;
|
|
|
|
|
const buffer = await crBrowser.stopTracing();
|
|
|
|
|
return { binary: buffer.toString('base64') };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
async cleanupContexts() {
|
|
|
|
|
await Promise.all(Array.from(this._contexts).map(context => context.close(internalCallMetadata())));
|
|
|
|
|
}
|
|
|
|
|
}
|