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-19 10:31:59 -07:00
|
|
|
import { Browser } from '../../browser';
|
2020-06-30 22:21:17 -07:00
|
|
|
import { Events } from '../../events';
|
2020-07-20 17:38:06 -07:00
|
|
|
import { BrowserChannel, BrowserContextChannel, BrowserInitializer, CDPSessionChannel, Binary, BrowserNewContextParams } from '../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-07-07 18:47:00 -07:00
|
|
|
import { CRBrowser } from '../../chromium/crBrowser';
|
2020-07-09 15:33:01 -07:00
|
|
|
import { PageDispatcher } from './pageDispatcher';
|
2020-06-25 16:05:36 -07:00
|
|
|
|
2020-06-26 17:24:21 -07:00
|
|
|
export class BrowserDispatcher extends Dispatcher<Browser, BrowserInitializer> implements BrowserChannel {
|
2020-08-19 10:31:59 -07:00
|
|
|
constructor(scope: DispatcherScope, browser: Browser, guid?: string) {
|
2020-08-13 13:24:49 -07:00
|
|
|
super(scope, browser, 'Browser', { version: browser.version() }, true, guid);
|
|
|
|
|
browser.on(Events.Browser.Disconnected, () => this._didClose());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_didClose() {
|
|
|
|
|
this._dispatchEvent('close');
|
|
|
|
|
this._dispose();
|
2020-06-25 16:05:36 -07:00
|
|
|
}
|
|
|
|
|
|
2020-07-20 17:38:06 -07:00
|
|
|
async newContext(params: BrowserNewContextParams): Promise<{ context: BrowserContextChannel }> {
|
2020-08-19 10:31:59 -07:00
|
|
|
return { context: new BrowserContextDispatcher(this._scope, await this._object.newContext(params)) };
|
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
|
|
|
|
2020-07-14 18:26:50 -07:00
|
|
|
async crNewBrowserCDPSession(): Promise<{ session: CDPSessionChannel }> {
|
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
|
|
|
|
|
|
|
|
async crStartTracing(params: { page?: PageDispatcher, path?: string, screenshots?: boolean, categories?: string[] }): Promise<void> {
|
|
|
|
|
const crBrowser = this._object as CRBrowser;
|
|
|
|
|
await crBrowser.startTracing(params.page ? params.page._object : undefined, params);
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-14 18:26:50 -07:00
|
|
|
async crStopTracing(): Promise<{ binary: Binary }> {
|
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
|
|
|
}
|