/** * Copyright 2017 Google Inc. All rights reserved. * Modifications 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 * as accessibility from './accessibility'; import { BrowserContext } from './browserContext'; import { ConsoleMessage } from './console'; import { TargetClosedError, TimeoutError } from './errors'; import { FileChooser } from './fileChooser'; import * as frames from './frames'; import { helper } from './helper'; import * as input from './input'; import { SdkObject } from './instrumentation'; import { builtinsSource } from '../utils/isomorphic/builtins'; import { createPageBindingScript, deliverBindingResult, takeBindingHandle } from './pageBinding'; import * as js from './javascript'; import { ProgressController } from './progress'; import { Screenshotter, validateScreenshotOptions } from './screenshotter'; import { TimeoutSettings } from './timeoutSettings'; import { LongStandingScope, assert, trimStringWithEllipsis } from '../utils'; import { createGuid } from './utils/crypto'; import { asLocator } from '../utils'; import { getComparator } from './utils/comparators'; import { debugLogger } from './utils/debugLogger'; import { isInvalidSelectorError } from '../utils/isomorphic/selectorParser'; import { ManualPromise } from '../utils/isomorphic/manualPromise'; import { compressCallLog } from './callLog'; import type { Artifact } from './artifact'; import type * as dom from './dom'; import type { CallMetadata } from './instrumentation'; import type * as network from './network'; import type { Progress } from './progress'; import type { ScreenshotOptions } from './screenshotter'; import type * as types from './types'; import type { TimeoutOptions } from '../utils/isomorphic/types'; import type { ImageComparatorOptions } from './utils/comparators'; import type * as channels from '@protocol/channels'; import type { BindingPayload } from './pageBinding'; export interface PageDelegate { readonly rawMouse: input.RawMouse; readonly rawKeyboard: input.RawKeyboard; readonly rawTouchscreen: input.RawTouchscreen; reload(): Promise; goBack(): Promise; goForward(): Promise; requestGC(): Promise; addInitScript(initScript: InitScript): Promise; removeNonInternalInitScripts(): Promise; closePage(runBeforeUnload: boolean): Promise; navigateFrame(frame: frames.Frame, url: string, referrer: string | undefined): Promise; updateExtraHTTPHeaders(): Promise; updateEmulatedViewportSize(preserveWindowBoundaries?: boolean): Promise; updateEmulateMedia(): Promise; updateRequestInterception(): Promise; updateFileChooserInterception(): Promise; bringToFront(): Promise; setBackgroundColor(color?: { r: number; g: number; b: number; a: number; }): Promise; takeScreenshot(progress: Progress, format: string, documentRect: types.Rect | undefined, viewportRect: types.Rect | undefined, quality: number | undefined, fitsViewport: boolean, scale: 'css' | 'device'): Promise; adoptElementHandle(handle: dom.ElementHandle, to: dom.FrameExecutionContext): Promise>; getContentFrame(handle: dom.ElementHandle): Promise; // Only called for frame owner elements. getOwnerFrame(handle: dom.ElementHandle): Promise; // Returns frameId. getContentQuads(handle: dom.ElementHandle): Promise; setInputFilePaths(handle: dom.ElementHandle, files: string[]): Promise; getBoundingBox(handle: dom.ElementHandle): Promise; getFrameElement(frame: frames.Frame): Promise; scrollRectIntoViewIfNeeded(handle: dom.ElementHandle, rect?: types.Rect): Promise<'error:notvisible' | 'error:notconnected' | 'done'>; setScreencastOptions(options: { width: number, height: number, quality: number } | null): Promise; getAccessibilityTree(needle?: dom.ElementHandle): Promise<{tree: accessibility.AXNode, needle: accessibility.AXNode | null}>; pdf?: (options: channels.PagePdfParams) => Promise; coverage?: () => any; // Work around WebKit's raf issues on Windows. rafCountForStablePosition(): number; // Work around Chrome's non-associated input and protocol. inputActionEpilogue(): Promise; // Work around for asynchronously dispatched CSP errors in Firefox. readonly cspErrorsAsynchronousForInlineScripts?: boolean; // Work around for mouse position in Firefox. resetForReuse(): Promise; // WebKit hack. shouldToggleStyleSheetToSyncAnimations(): boolean; } type EmulatedSize = { screen: types.Size, viewport: types.Size }; type EmulatedMedia = { media: types.MediaType; colorScheme: types.ColorScheme; reducedMotion: types.ReducedMotion; forcedColors: types.ForcedColors; contrast: types.Contrast; }; type ExpectScreenshotOptions = ImageComparatorOptions & ScreenshotOptions & { timeout?: number, expected?: Buffer, isNot?: boolean, locator?: { frame: frames.Frame, selector: string, }, }; export class Page extends SdkObject { static Events = { Close: 'close', Crash: 'crash', Download: 'download', FileChooser: 'filechooser', FrameAttached: 'frameattached', FrameDetached: 'framedetached', InternalFrameNavigatedToNewDocument: 'internalframenavigatedtonewdocument', LocatorHandlerTriggered: 'locatorhandlertriggered', ScreencastFrame: 'screencastframe', Video: 'video', WebSocket: 'websocket', Worker: 'worker', }; private _closedState: 'open' | 'closing' | 'closed' = 'open'; private _closedPromise = new ManualPromise(); private _initialized: Page | Error | undefined; private _initializedPromise = new ManualPromise(); private _eventsToEmitAfterInitialized: { event: string | symbol, args: any[] }[] = []; private _crashed = false; readonly openScope = new LongStandingScope(); readonly _browserContext: BrowserContext; readonly keyboard: input.Keyboard; readonly mouse: input.Mouse; readonly touchscreen: input.Touchscreen; readonly _timeoutSettings: TimeoutSettings; readonly _delegate: PageDelegate; _emulatedSize: EmulatedSize | undefined; private _extraHTTPHeaders: types.HeadersArray | undefined; private _emulatedMedia: Partial = {}; private _interceptFileChooser = false; private readonly _pageBindings = new Map(); initScripts: InitScript[] = []; readonly _screenshotter: Screenshotter; readonly _frameManager: frames.FrameManager; readonly accessibility: accessibility.Accessibility; private _workers = new Map(); readonly pdf: ((options: channels.PagePdfParams) => Promise) | undefined; readonly coverage: any; _clientRequestInterceptor: network.RouteHandler | undefined; _serverRequestInterceptor: network.RouteHandler | undefined; _ownedContext: BrowserContext | undefined; _video: Artifact | null = null; _opener: Page | undefined; private _isServerSideOnly = false; private _locatorHandlers = new Map }>(); private _lastLocatorHandlerUid = 0; private _locatorHandlerRunningCounter = 0; // Aiming at 25 fps by default - each frame is 40ms, but we give some slack with 35ms. // When throttling for tracing, 200ms between frames, except for 10 frames around the action. private _frameThrottler = new FrameThrottler(10, 35, 200); _closeReason: string | undefined; constructor(delegate: PageDelegate, browserContext: BrowserContext) { super(browserContext, 'page'); this.attribution.page = this; this._delegate = delegate; this._browserContext = browserContext; this.accessibility = new accessibility.Accessibility(delegate.getAccessibilityTree.bind(delegate)); this.keyboard = new input.Keyboard(delegate.rawKeyboard); this.mouse = new input.Mouse(delegate.rawMouse, this); this.touchscreen = new input.Touchscreen(delegate.rawTouchscreen, this); this._timeoutSettings = new TimeoutSettings(browserContext._timeoutSettings); this._screenshotter = new Screenshotter(this); this._frameManager = new frames.FrameManager(this); if (delegate.pdf) this.pdf = delegate.pdf.bind(delegate); this.coverage = delegate.coverage ? delegate.coverage() : null; } async reportAsNew(opener: Page | undefined, error: Error | undefined = undefined, contextEvent: string = BrowserContext.Events.Page) { if (opener) { const openerPageOrError = await opener.waitForInitializedOrError(); if (openerPageOrError instanceof Page && !openerPageOrError.isClosed()) this._opener = openerPageOrError; } this._markInitialized(error, contextEvent); } private _markInitialized(error: Error | undefined = undefined, contextEvent: string = BrowserContext.Events.Page) { if (error) { // Initialization error could have happened because of // context/browser closure. Just ignore the page. if (this._browserContext.isClosingOrClosed()) return; this._frameManager.createDummyMainFrameIfNeeded(); } this._initialized = error || this; this.emitOnContext(contextEvent, this); for (const { event, args } of this._eventsToEmitAfterInitialized) this._browserContext.emit(event, ...args); this._eventsToEmitAfterInitialized = []; // It may happen that page initialization finishes after Close event has already been sent, // in that case we fire another Close event to ensure that each reported Page will have // corresponding Close event after it is reported on the context. if (this.isClosed()) this.emit(Page.Events.Close); else this.instrumentation.onPageOpen(this); // Note: it is important to resolve _initializedPromise at the end, // so that anyone who awaits waitForInitializedOrError got a ready and reported page. this._initializedPromise.resolve(this._initialized); } initializedOrUndefined(): Page | undefined { return this._initialized ? this : undefined; } waitForInitializedOrError(): Promise { return this._initializedPromise; } emitOnContext(event: string | symbol, ...args: any[]) { if (this._isServerSideOnly) return; this._browserContext.emit(event, ...args); } emitOnContextOnceInitialized(event: string | symbol, ...args: any[]) { if (this._isServerSideOnly) return; // Some events, like console messages, may come before page is ready. // In this case, postpone the event until page is initialized, // and dispatch it to the client later, either on the live Page, // or on the "errored" Page. if (this._initialized) this._browserContext.emit(event, ...args); else this._eventsToEmitAfterInitialized.push({ event, args }); } async resetForReuse(metadata: CallMetadata) { this.setDefaultNavigationTimeout(undefined); this.setDefaultTimeout(undefined); this._locatorHandlers.clear(); await this._removeExposedBindings(); await this._removeInitScripts(); await this.setClientRequestInterceptor(undefined); await this._setServerRequestInterceptor(undefined); await this.setFileChooserIntercepted(false); // Re-navigate once init scripts are gone. await this.mainFrame().goto(metadata, 'about:blank'); this._emulatedSize = undefined; this._emulatedMedia = {}; this._extraHTTPHeaders = undefined; this._interceptFileChooser = false; await Promise.all([ this._delegate.updateEmulatedViewportSize(), this._delegate.updateEmulateMedia(), this._delegate.updateFileChooserInterception(), ]); await this._delegate.resetForReuse(); } _didClose() { this._frameManager.dispose(); this._frameThrottler.dispose(); assert(this._closedState !== 'closed', 'Page closed twice'); this._closedState = 'closed'; this.emit(Page.Events.Close); this._closedPromise.resolve(); this.instrumentation.onPageClose(this); this.openScope.close(new TargetClosedError()); } _didCrash() { this._frameManager.dispose(); this._frameThrottler.dispose(); this.emit(Page.Events.Crash); this._crashed = true; this.instrumentation.onPageClose(this); this.openScope.close(new Error('Page crashed')); } async _onFileChooserOpened(handle: dom.ElementHandle) { let multiple; try { multiple = await handle.evaluate(element => !!(element as HTMLInputElement).multiple); } catch (e) { // Frame/context may be gone during async processing. Do not throw. return; } if (!this.listenerCount(Page.Events.FileChooser)) { handle.dispose(); return; } const fileChooser = new FileChooser(this, handle, multiple); this.emit(Page.Events.FileChooser, fileChooser); } context(): BrowserContext { return this._browserContext; } opener(): Page | undefined { return this._opener; } mainFrame(): frames.Frame { return this._frameManager.mainFrame(); } frames(): frames.Frame[] { return this._frameManager.frames(); } setDefaultNavigationTimeout(timeout: number | undefined) { this._timeoutSettings.setDefaultNavigationTimeout(timeout); } setDefaultTimeout(timeout: number | undefined) { this._timeoutSettings.setDefaultTimeout(timeout); } async exposeBinding(name: string, needsHandle: boolean, playwrightBinding: frames.FunctionWithSource) { if (this._pageBindings.has(name)) throw new Error(`Function "${name}" has been already registered`); if (this._browserContext._pageBindings.has(name)) throw new Error(`Function "${name}" has been already registered in the browser context`); const binding = new PageBinding(name, playwrightBinding, needsHandle); this._pageBindings.set(name, binding); await this._delegate.addInitScript(binding.initScript); await Promise.all(this.frames().map(frame => frame.evaluateExpression(binding.initScript.source).catch(e => {}))); } async _removeExposedBindings() { for (const [key, binding] of this._pageBindings) { if (!binding.internal) this._pageBindings.delete(key); } } setExtraHTTPHeaders(headers: types.HeadersArray) { this._extraHTTPHeaders = headers; return this._delegate.updateExtraHTTPHeaders(); } extraHTTPHeaders(): types.HeadersArray | undefined { return this._extraHTTPHeaders; } async _onBindingCalled(payload: string, context: dom.FrameExecutionContext) { if (this._closedState === 'closed') return; await PageBinding.dispatch(this, payload, context); } _addConsoleMessage(type: string, args: js.JSHandle[], location: types.ConsoleMessageLocation, text?: string) { const message = new ConsoleMessage(this, type, text, args, location); const intercepted = this._frameManager.interceptConsoleMessage(message); if (intercepted) { args.forEach(arg => arg.dispose()); return; } this.emitOnContextOnceInitialized(BrowserContext.Events.Console, message); } async reload(metadata: CallMetadata, options: types.NavigateOptions): Promise { const controller = new ProgressController(metadata, this); return controller.run(progress => this.mainFrame().raceNavigationAction(progress, options, async () => { // Note: waitForNavigation may fail before we get response to reload(), // so we should await it immediately. const [response] = await Promise.all([ // Reload must be a new document, and should not be confused with a stray pushState. this.mainFrame()._waitForNavigation(progress, true /* requiresNewDocument */, options), this._delegate.reload(), ]); return response; }), this._timeoutSettings.navigationTimeout(options)); } async goBack(metadata: CallMetadata, options: types.NavigateOptions): Promise { const controller = new ProgressController(metadata, this); return controller.run(progress => this.mainFrame().raceNavigationAction(progress, options, async () => { // Note: waitForNavigation may fail before we get response to goBack, // so we should catch it immediately. let error: Error | undefined; const waitPromise = this.mainFrame()._waitForNavigation(progress, false /* requiresNewDocument */, options).catch(e => { error = e; return null; }); const result = await this._delegate.goBack(); if (!result) return null; const response = await waitPromise; if (error) throw error; return response; }), this._timeoutSettings.navigationTimeout(options)); } async goForward(metadata: CallMetadata, options: types.NavigateOptions): Promise { const controller = new ProgressController(metadata, this); return controller.run(progress => this.mainFrame().raceNavigationAction(progress, options, async () => { // Note: waitForNavigation may fail before we get response to goForward, // so we should catch it immediately. let error: Error | undefined; const waitPromise = this.mainFrame()._waitForNavigation(progress, false /* requiresNewDocument */, options).catch(e => { error = e; return null; }); const result = await this._delegate.goForward(); if (!result) return null; const response = await waitPromise; if (error) throw error; return response; }), this._timeoutSettings.navigationTimeout(options)); } requestGC(): Promise { return this._delegate.requestGC(); } registerLocatorHandler(selector: string, noWaitAfter: boolean | undefined) { const uid = ++this._lastLocatorHandlerUid; this._locatorHandlers.set(uid, { selector, noWaitAfter }); return uid; } resolveLocatorHandler(uid: number, remove: boolean | undefined) { const handler = this._locatorHandlers.get(uid); if (remove) this._locatorHandlers.delete(uid); if (handler) { handler.resolved?.resolve(); handler.resolved = undefined; } } unregisterLocatorHandler(uid: number) { this._locatorHandlers.delete(uid); } async performActionPreChecks(progress: Progress) { await this._performWaitForNavigationCheck(progress); progress.throwIfAborted(); await this._performLocatorHandlersCheckpoint(progress); progress.throwIfAborted(); // Wait once again, just in case a locator handler caused a navigation. await this._performWaitForNavigationCheck(progress); } private async _performWaitForNavigationCheck(progress: Progress) { if (process.env.PLAYWRIGHT_SKIP_NAVIGATION_CHECK) return; const mainFrame = this._frameManager.mainFrame(); if (!mainFrame || !mainFrame.pendingDocument()) return; const url = mainFrame.pendingDocument()?.request?.url(); const toUrl = url ? `" ${trimStringWithEllipsis(url, 200)}"` : ''; progress.log(` waiting for${toUrl} navigation to finish...`); await helper.waitForEvent(progress, mainFrame, frames.Frame.Events.InternalNavigation, (e: frames.NavigationEvent) => { if (!e.isPublic) return false; if (!e.error) progress.log(` navigated to "${trimStringWithEllipsis(mainFrame.url(), 200)}"`); return true; }).promise; } private async _performLocatorHandlersCheckpoint(progress: Progress) { // Do not run locator handlers from inside locator handler callbacks to avoid deadlocks. if (this._locatorHandlerRunningCounter) return; for (const [uid, handler] of this._locatorHandlers) { if (!handler.resolved) { if (await this.mainFrame().isVisibleInternal(handler.selector, { strict: true })) { handler.resolved = new ManualPromise(); this.emit(Page.Events.LocatorHandlerTriggered, uid); } } if (handler.resolved) { ++this._locatorHandlerRunningCounter; progress.log(` found ${asLocator(this.attribution.playwright.options.sdkLanguage, handler.selector)}, intercepting action to run the handler`); const promise = handler.resolved.then(async () => { progress.throwIfAborted(); if (!handler.noWaitAfter) { progress.log(` locator handler has finished, waiting for ${asLocator(this.attribution.playwright.options.sdkLanguage, handler.selector)} to be hidden`); await this.mainFrame().waitForSelectorInternal(progress, handler.selector, false, { state: 'hidden' }); } else { progress.log(` locator handler has finished`); } }); await this.openScope.race(promise).finally(() => --this._locatorHandlerRunningCounter); // Avoid side-effects after long-running operation. progress.throwIfAborted(); progress.log(` interception handler has finished, continuing`); } } } async emulateMedia(options: Partial) { if (options.media !== undefined) this._emulatedMedia.media = options.media; if (options.colorScheme !== undefined) this._emulatedMedia.colorScheme = options.colorScheme; if (options.reducedMotion !== undefined) this._emulatedMedia.reducedMotion = options.reducedMotion; if (options.forcedColors !== undefined) this._emulatedMedia.forcedColors = options.forcedColors; if (options.contrast !== undefined) this._emulatedMedia.contrast = options.contrast; await this._delegate.updateEmulateMedia(); } emulatedMedia(): EmulatedMedia { const contextOptions = this._browserContext._options; return { media: this._emulatedMedia.media || 'no-override', colorScheme: this._emulatedMedia.colorScheme !== undefined ? this._emulatedMedia.colorScheme : contextOptions.colorScheme ?? 'light', reducedMotion: this._emulatedMedia.reducedMotion !== undefined ? this._emulatedMedia.reducedMotion : contextOptions.reducedMotion ?? 'no-preference', forcedColors: this._emulatedMedia.forcedColors !== undefined ? this._emulatedMedia.forcedColors : contextOptions.forcedColors ?? 'none', contrast: this._emulatedMedia.contrast !== undefined ? this._emulatedMedia.contrast : contextOptions.contrast ?? 'no-preference', }; } async setViewportSize(viewportSize: types.Size) { this._emulatedSize = { viewport: { ...viewportSize }, screen: { ...viewportSize } }; await this._delegate.updateEmulatedViewportSize(); } viewportSize(): types.Size | null { return this.emulatedSize()?.viewport || null; } emulatedSize(): EmulatedSize | null { if (this._emulatedSize) return this._emulatedSize; const contextOptions = this._browserContext._options; return contextOptions.viewport ? { viewport: contextOptions.viewport, screen: contextOptions.screen || contextOptions.viewport } : null; } async bringToFront(): Promise { await this._delegate.bringToFront(); } async addInitScript(source: string, name?: string) { const initScript = new InitScript(source, false /* internal */, name); this.initScripts.push(initScript); await this._delegate.addInitScript(initScript); } async _removeInitScripts() { this.initScripts = this.initScripts.filter(script => script.internal); await this._delegate.removeNonInternalInitScripts(); } needsRequestInterception(): boolean { return !!this._clientRequestInterceptor || !!this._serverRequestInterceptor || !!this._browserContext._requestInterceptor; } async setClientRequestInterceptor(handler: network.RouteHandler | undefined): Promise { this._clientRequestInterceptor = handler; await this._delegate.updateRequestInterception(); } async _setServerRequestInterceptor(handler: network.RouteHandler | undefined): Promise { this._serverRequestInterceptor = handler; await this._delegate.updateRequestInterception(); } async expectScreenshot(metadata: CallMetadata, options: ExpectScreenshotOptions = {}): Promise<{ actual?: Buffer, previous?: Buffer, diff?: Buffer, errorMessage?: string, log?: string[] }> { const locator = options.locator; const rafrafScreenshot = locator ? async (progress: Progress, timeout: number) => { return await locator.frame.rafrafTimeoutScreenshotElementWithProgress(progress, locator.selector, timeout, options || {}); } : async (progress: Progress, timeout: number) => { await this.performActionPreChecks(progress); await this.mainFrame().rafrafTimeout(timeout); return await this._screenshotter.screenshotPage(progress, options || {}); }; const comparator = getComparator('image/png'); const controller = new ProgressController(metadata, this); if (!options.expected && options.isNot) return { errorMessage: '"not" matcher requires expected result' }; try { const format = validateScreenshotOptions(options || {}); if (format !== 'png') throw new Error('Only PNG screenshots are supported'); } catch (error) { return { errorMessage: error.message }; } let intermediateResult: { actual?: Buffer, previous?: Buffer, errorMessage: string, diff?: Buffer, } | undefined = undefined; const areEqualScreenshots = (actual: Buffer | undefined, expected: Buffer | undefined, previous: Buffer | undefined) => { const comparatorResult = actual && expected ? comparator(actual, expected, options) : undefined; if (comparatorResult !== undefined && !!comparatorResult === !!options.isNot) return true; if (comparatorResult) intermediateResult = { errorMessage: comparatorResult.errorMessage, diff: comparatorResult.diff, actual, previous }; return false; }; const callTimeout = this._timeoutSettings.timeout(options); return controller.run(async progress => { let actual: Buffer | undefined; let previous: Buffer | undefined; const pollIntervals = [0, 100, 250, 500]; progress.log(`${metadata.apiName}${callTimeout ? ` with timeout ${callTimeout}ms` : ''}`); if (options.expected) progress.log(` verifying given screenshot expectation`); else progress.log(` generating new stable screenshot expectation`); let isFirstIteration = true; while (true) { progress.throwIfAborted(); if (this.isClosed()) throw new Error('The page has closed'); const screenshotTimeout = pollIntervals.shift() ?? 1000; if (screenshotTimeout) progress.log(`waiting ${screenshotTimeout}ms before taking screenshot`); previous = actual; actual = await rafrafScreenshot(progress, screenshotTimeout).catch(e => { progress.log(`failed to take screenshot - ` + e.message); return undefined; }); if (!actual) continue; // Compare against expectation for the first iteration. const expectation = options.expected && isFirstIteration ? options.expected : previous; if (areEqualScreenshots(actual, expectation, previous)) break; if (intermediateResult) progress.log(intermediateResult.errorMessage); isFirstIteration = false; } if (!isFirstIteration) progress.log(`captured a stable screenshot`); if (!options.expected) return { actual }; if (isFirstIteration) { progress.log(`screenshot matched expectation`); return {}; } if (areEqualScreenshots(actual, options.expected, undefined)) { progress.log(`screenshot matched expectation`); return {}; } throw new Error(intermediateResult!.errorMessage); }, callTimeout).catch(e => { // Q: Why not throw upon isSessionClosedError(e) as in other places? // A: We want user to receive a friendly diff between actual and expected/previous. if (js.isJavaScriptErrorInEvaluate(e) || isInvalidSelectorError(e)) throw e; let errorMessage = e.message; if (e instanceof TimeoutError && intermediateResult?.previous) errorMessage = `Failed to take two consecutive stable screenshots.`; return { log: compressCallLog(e.message ? [...metadata.log, e.message] : metadata.log), ...intermediateResult, errorMessage, timedOut: (e instanceof TimeoutError), }; }); } async screenshot(metadata: CallMetadata, options: ScreenshotOptions & TimeoutOptions = {}): Promise { const controller = new ProgressController(metadata, this); return controller.run( progress => this._screenshotter.screenshotPage(progress, options), this._timeoutSettings.timeout(options)); } async close(metadata: CallMetadata, options: { runBeforeUnload?: boolean, reason?: string } = {}) { if (this._closedState === 'closed') return; if (options.reason) this._closeReason = options.reason; const runBeforeUnload = !!options.runBeforeUnload; if (this._closedState !== 'closing') { this._closedState = 'closing'; // This might throw if the browser context containing the page closes // while we are trying to close the page. await this._delegate.closePage(runBeforeUnload).catch(e => debugLogger.log('error', e)); } if (!runBeforeUnload) await this._closedPromise; if (this._ownedContext) await this._ownedContext.close(options); } isClosed(): boolean { return this._closedState === 'closed'; } hasCrashed() { return this._crashed; } isClosedOrClosingOrCrashed() { return this._closedState !== 'open' || this._crashed; } _addWorker(workerId: string, worker: Worker) { this._workers.set(workerId, worker); this.emit(Page.Events.Worker, worker); } _removeWorker(workerId: string) { const worker = this._workers.get(workerId); if (!worker) return; worker.didClose(); this._workers.delete(workerId); } _clearWorkers() { for (const [workerId, worker] of this._workers) { worker.didClose(); this._workers.delete(workerId); } } async setFileChooserIntercepted(enabled: boolean): Promise { this._interceptFileChooser = enabled; await this._delegate.updateFileChooserInterception(); } fileChooserIntercepted() { return this._interceptFileChooser; } frameNavigatedToNewDocument(frame: frames.Frame) { this.emit(Page.Events.InternalFrameNavigatedToNewDocument, frame); const origin = frame.origin(); if (origin) this._browserContext.addVisitedOrigin(origin); } allInitScripts() { const bindings = [...this._browserContext._pageBindings.values(), ...this._pageBindings.values()]; return [kBuiltinsScript, ...bindings.map(binding => binding.initScript), ...this._browserContext.initScripts, ...this.initScripts]; } getBinding(name: string) { return this._pageBindings.get(name) || this._browserContext._pageBindings.get(name); } setScreencastOptions(options: { width: number, height: number, quality: number } | null) { this._delegate.setScreencastOptions(options).catch(e => debugLogger.log('error', e)); this._frameThrottler.setThrottlingEnabled(!!options); } throttleScreencastFrameAck(ack: () => void) { // Don't ack immediately, tracing has smart throttling logic that is implemented here. this._frameThrottler.ack(ack); } temporarilyDisableTracingScreencastThrottling() { this._frameThrottler.recharge(); } async safeNonStallingEvaluateInAllFrames(expression: string, world: types.World, options: { throwOnJSErrors?: boolean } = {}) { await Promise.all(this.frames().map(async frame => { try { await frame.nonStallingEvaluateInExistingContext(expression, world); } catch (e) { if (options.throwOnJSErrors && js.isJavaScriptErrorInEvaluate(e)) throw e; } })); } async hideHighlight() { await Promise.all(this.frames().map(frame => frame.hideHighlight().catch(() => {}))); } markAsServerSideOnly() { this._isServerSideOnly = true; } } export class Worker extends SdkObject { static Events = { Close: 'close', }; private _url: string; private _executionContextPromise: Promise; private _executionContextCallback: (value: js.ExecutionContext) => void; _existingExecutionContext: js.ExecutionContext | null = null; readonly openScope = new LongStandingScope(); constructor(parent: SdkObject, url: string) { super(parent, 'worker'); this._url = url; this._executionContextCallback = () => {}; this._executionContextPromise = new Promise(x => this._executionContextCallback = x); } _createExecutionContext(delegate: js.ExecutionContextDelegate) { this._existingExecutionContext = new js.ExecutionContext(this, delegate, 'worker'); this._executionContextCallback(this._existingExecutionContext); return this._existingExecutionContext; } url(): string { return this._url; } didClose() { if (this._existingExecutionContext) this._existingExecutionContext.contextDestroyed('Worker was closed'); this.emit(Worker.Events.Close, this); this.openScope.close(new Error('Worker closed')); } async evaluateExpression(expression: string, isFunction: boolean | undefined, arg: any): Promise { return js.evaluateExpression(await this._executionContextPromise, expression, { returnByValue: true, isFunction }, arg); } async evaluateExpressionHandle(expression: string, isFunction: boolean | undefined, arg: any): Promise { return js.evaluateExpression(await this._executionContextPromise, expression, { returnByValue: false, isFunction }, arg); } } export class PageBinding { static kPlaywrightBinding = '__playwright__binding__' + js.runtimeGuid; readonly name: string; readonly playwrightFunction: frames.FunctionWithSource; readonly initScript: InitScript; readonly needsHandle: boolean; readonly internal: boolean; constructor(name: string, playwrightFunction: frames.FunctionWithSource, needsHandle: boolean) { this.name = name; this.playwrightFunction = playwrightFunction; this.initScript = new InitScript(createPageBindingScript(PageBinding.kPlaywrightBinding, name, needsHandle), true /* internal */); this.needsHandle = needsHandle; this.internal = name.startsWith('__pw'); } static async dispatch(page: Page, payload: string, context: dom.FrameExecutionContext) { const { name, seq, serializedArgs } = JSON.parse(payload) as BindingPayload; try { assert(context.world); const binding = page.getBinding(name); if (!binding) throw new Error(`Function "${name}" is not exposed`); let result: any; if (binding.needsHandle) { const handle = await context.evaluateHandle(takeBindingHandle, { name, seq }).catch(e => null); result = await binding.playwrightFunction({ frame: context.frame, page, context: page._browserContext }, handle); } else { if (!Array.isArray(serializedArgs)) throw new Error(`serializedArgs is not an array. This can happen when Array.prototype.toJSON is defined incorrectly`); const args = serializedArgs!.map(a => js.parseEvaluationResultValue(a)); result = await binding.playwrightFunction({ frame: context.frame, page, context: page._browserContext }, ...args); } context.evaluate(deliverBindingResult, { name, seq, result }).catch(e => debugLogger.log('error', e)); } catch (error) { context.evaluate(deliverBindingResult, { name, seq, error }).catch(e => debugLogger.log('error', e)); } } } export class InitScript { readonly source: string; readonly internal: boolean; readonly name?: string; constructor(source: string, internal?: boolean, name?: string) { const guid = createGuid(); this.source = `(() => { const name = '__pw_init_scripts__${js.runtimeGuid}'; if (!globalThis[name]) Object.defineProperty(globalThis, name, { value: {}, configurable: false, enumerable: false, writable: false }); const globalInitScripts = globalThis[name]; const hasInitScript = globalInitScripts[${JSON.stringify(guid)}]; if (hasInitScript) return; globalThis[name][${JSON.stringify(guid)}] = true; ${source} })();`; this.internal = !!internal; this.name = name; } } export const kBuiltinsScript = new InitScript(builtinsSource(js.runtimeGuid), true /* internal */); class FrameThrottler { private _acks: (() => void)[] = []; private _defaultInterval: number; private _throttlingInterval: number; private _nonThrottledFrames: number; private _budget: number; private _throttlingEnabled = false; private _timeoutId: NodeJS.Timeout | undefined; constructor(nonThrottledFrames: number, defaultInterval: number, throttlingInterval: number) { this._nonThrottledFrames = nonThrottledFrames; this._budget = nonThrottledFrames; this._defaultInterval = defaultInterval; this._throttlingInterval = throttlingInterval; this._tick(); } dispose() { if (this._timeoutId) { clearTimeout(this._timeoutId); this._timeoutId = undefined; } } setThrottlingEnabled(enabled: boolean) { this._throttlingEnabled = enabled; } recharge() { // Send all acks, reset budget. for (const ack of this._acks) ack(); this._acks = []; this._budget = this._nonThrottledFrames; if (this._timeoutId) { clearTimeout(this._timeoutId); this._tick(); } } ack(ack: () => void) { if (!this._timeoutId) { // Already disposed. ack(); return; } this._acks.push(ack); } private _tick() { const ack = this._acks.shift(); if (ack) { --this._budget; ack(); } if (this._throttlingEnabled && this._budget <= 0) { // Non-throttled frame budget is exceeded. Next ack will be throttled. this._timeoutId = setTimeout(() => this._tick(), this._throttlingInterval); } else { // Either not throttling, or still under budget. Next ack will be after the default timeout. this._timeoutId = setTimeout(() => this._tick(), this._defaultInterval); } } }