/** * Copyright 2022 Google Inc. All rights reserved. * * 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 {Page as PageBase} from '../../api/Page.js'; import {Connection} from './Connection.js'; import type {EvaluateFunc, HandleFor} from '../types.js'; import {isString, stringifyFunction} from '../util.js'; import {BidiSerializer} from './Serializer.js'; import {JSHandle} from './JSHandle.js'; import {Reference} from './types.js'; /** * @internal */ export class Page extends PageBase { #connection: Connection; _contextId: string; constructor(connection: Connection, contextId: string) { super(); this.#connection = connection; this._contextId = contextId; } override async close(): Promise { await this.#connection.send('browsingContext.close', { context: this._contextId, }); } get connection(): Connection { return this.#connection; } override async evaluateHandle< Params extends unknown[], Func extends EvaluateFunc = EvaluateFunc >( pageFunction: Func | string, ...args: Params ): Promise>>> { return this.#evaluate(false, pageFunction, ...args); } override async evaluate< Params extends unknown[], Func extends EvaluateFunc = EvaluateFunc >( pageFunction: Func | string, ...args: Params ): Promise>> { return this.#evaluate(true, pageFunction, ...args); } async #evaluate< Params extends unknown[], Func extends EvaluateFunc = EvaluateFunc >( returnByValue: true, pageFunction: Func | string, ...args: Params ): Promise>>; async #evaluate< Params extends unknown[], Func extends EvaluateFunc = EvaluateFunc >( returnByValue: false, pageFunction: Func | string, ...args: Params ): Promise>>>; async #evaluate< Params extends unknown[], Func extends EvaluateFunc = EvaluateFunc >( returnByValue: boolean, pageFunction: Func | string, ...args: Params ): Promise>> | Awaited>> { let responsePromise; const resultOwnership = returnByValue ? 'none' : 'root'; if (isString(pageFunction)) { responsePromise = this.#connection.send('script.evaluate', { expression: pageFunction, target: {context: this._contextId}, resultOwnership, awaitPromise: true, }); } else { responsePromise = this.#connection.send('script.callFunction', { functionDeclaration: stringifyFunction(pageFunction), arguments: await Promise.all( args.map(arg => { return BidiSerializer.serialize(arg, this); }) ), target: {context: this._contextId}, resultOwnership, awaitPromise: true, }); } const {result} = await responsePromise; if ('type' in result && result.type === 'exception') { throw new Error(result.exceptionDetails.text); } return returnByValue ? BidiSerializer.deserialize(result.result) : getBidiHandle(this, result.result as Reference); } } /** * @internal */ export function getBidiHandle(context: Page, result: Reference): JSHandle { // TODO: | ElementHandle if ( (result.type === 'node' || result.type === 'window') && context._contextId ) { throw new Error('ElementHandle not implemented'); } return new JSHandle(context, result); }