mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
138 lines
5.3 KiB
TypeScript
138 lines
5.3 KiB
TypeScript
![]() |
/**
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
import { Events } from '../../events';
|
||
|
import { Frame } from '../../frames';
|
||
|
import { Page } from '../../page';
|
||
|
import * as types from '../../types';
|
||
|
import { PageChannel, ResponseChannel } from '../channels';
|
||
|
import { Dispatcher, DispatcherScope } from '../dispatcher';
|
||
|
import { BrowserContextDispatcher } from './browserContextDispatcher';
|
||
|
import { FrameDispatcher } from './frameDispatcher';
|
||
|
import { RequestDispatcher, ResponseDispatcher } from './networkDispatchers';
|
||
|
|
||
|
export class PageDispatcher extends Dispatcher implements PageChannel {
|
||
|
private _page: Page;
|
||
|
|
||
|
static from(scope: DispatcherScope, page: Page): PageDispatcher {
|
||
|
if ((page as any)[scope.dispatcherSymbol])
|
||
|
return (page as any)[scope.dispatcherSymbol];
|
||
|
return new PageDispatcher(scope, page);
|
||
|
}
|
||
|
|
||
|
static fromNullable(scope: DispatcherScope, page: Page | null): PageDispatcher | null {
|
||
|
if (!page)
|
||
|
return null;
|
||
|
return PageDispatcher.from(scope, page);
|
||
|
}
|
||
|
|
||
|
constructor(scope: DispatcherScope, page: Page) {
|
||
|
super(scope, page, 'page');
|
||
|
this._initialize({
|
||
|
browserContext: BrowserContextDispatcher.from(scope, page._browserContext),
|
||
|
mainFrame: FrameDispatcher.from(scope, page.mainFrame()),
|
||
|
frames: page.frames().map(f => FrameDispatcher.from(this._scope, f)),
|
||
|
});
|
||
|
this._page = page;
|
||
|
page.on(Events.Page.FrameAttached, frame => this._onFrameAttached(frame));
|
||
|
page.on(Events.Page.FrameDetached, frame => this._onFrameDetached(frame));
|
||
|
page.on(Events.Page.FrameNavigated, frame => this._onFrameNavigated(frame));
|
||
|
page.on(Events.Page.Close, () => {
|
||
|
this._dispatchEvent('close');
|
||
|
});
|
||
|
page.on(Events.Page.Request, request => this._dispatchEvent('request', RequestDispatcher.from(this._scope, request)));
|
||
|
page.on(Events.Page.Response, response => this._dispatchEvent('response', ResponseDispatcher.from(this._scope, response)));
|
||
|
page.on(Events.Page.RequestFinished, request => this._dispatchEvent('requestFinished', ResponseDispatcher.from(this._scope, request)));
|
||
|
page.on(Events.Page.RequestFailed, request => this._dispatchEvent('requestFailed', ResponseDispatcher.from(this._scope, request)));
|
||
|
}
|
||
|
|
||
|
async setDefaultNavigationTimeoutNoReply(params: { timeout: number }) {
|
||
|
this._page.setDefaultNavigationTimeout(params.timeout);
|
||
|
}
|
||
|
|
||
|
async setDefaultTimeoutNoReply(params: { timeout: number }) {
|
||
|
this._page.setDefaultTimeout(params.timeout);
|
||
|
}
|
||
|
|
||
|
async opener(): Promise<PageChannel | null> {
|
||
|
return PageDispatcher.fromNullable(this._scope, await this._page.opener());
|
||
|
}
|
||
|
|
||
|
async exposeBinding(params: { name: string }): Promise<void> {
|
||
|
}
|
||
|
|
||
|
async setExtraHTTPHeaders(params: { headers: types.Headers }): Promise<void> {
|
||
|
await this._page.setExtraHTTPHeaders(params.headers);
|
||
|
}
|
||
|
|
||
|
async reload(params: { options?: types.NavigateOptions }): Promise<ResponseChannel | null> {
|
||
|
return ResponseDispatcher.fromNullable(this._scope, await this._page.reload(params.options));
|
||
|
}
|
||
|
|
||
|
async waitForEvent(params: { event: string }): Promise<any> {
|
||
|
}
|
||
|
|
||
|
async goBack(params: { options?: types.NavigateOptions }): Promise<ResponseChannel | null> {
|
||
|
return ResponseDispatcher.fromNullable(this._scope, await this._page.goBack(params.options));
|
||
|
}
|
||
|
|
||
|
async goForward(params: { options?: types.NavigateOptions }): Promise<ResponseChannel | null> {
|
||
|
return ResponseDispatcher.fromNullable(this._scope, await this._page.goForward(params.options));
|
||
|
}
|
||
|
|
||
|
async emulateMedia(params: { options: { media?: 'screen' | 'print', colorScheme?: 'dark' | 'light' | 'no-preference' } }): Promise<void> {
|
||
|
await this._page.emulateMedia(params.options);
|
||
|
}
|
||
|
|
||
|
async setViewportSize(params: { viewportSize: types.Size }): Promise<void> {
|
||
|
await this._page.setViewportSize(params.viewportSize);
|
||
|
}
|
||
|
|
||
|
async addInitScript(params: { source: string }): Promise<void> {
|
||
|
await this._page._addInitScriptExpression(params.source);
|
||
|
}
|
||
|
|
||
|
async setNetworkInterceptionEnabled(params: { enabled: boolean }): Promise<void> {
|
||
|
}
|
||
|
|
||
|
async screenshot(params: { options?: types.ScreenshotOptions }): Promise<Buffer> {
|
||
|
return await this._page.screenshot(params.options);
|
||
|
}
|
||
|
|
||
|
async close(params: { options?: { runBeforeUnload?: boolean } }): Promise<void> {
|
||
|
await this._page.close(params.options);
|
||
|
}
|
||
|
|
||
|
async setFileChooserInterceptedNoReply(params: { intercepted: boolean }) {
|
||
|
}
|
||
|
|
||
|
async title() {
|
||
|
return await this._page.title();
|
||
|
}
|
||
|
|
||
|
_onFrameAttached(frame: Frame) {
|
||
|
this._dispatchEvent('frameAttached', FrameDispatcher.from(this._scope, frame));
|
||
|
}
|
||
|
|
||
|
_onFrameNavigated(frame: Frame) {
|
||
|
this._dispatchEvent('frameNavigated', { frame: FrameDispatcher.from(this._scope, frame), url: frame.url() });
|
||
|
}
|
||
|
|
||
|
_onFrameDetached(frame: Frame) {
|
||
|
this._dispatchEvent('frameDetached', FrameDispatcher.from(this._scope, frame));
|
||
|
}
|
||
|
}
|