2022-09-21 06:10:50 +00:00
|
|
|
/**
|
|
|
|
* 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';
|
2023-02-02 14:14:28 +00:00
|
|
|
import type {EvaluateFunc} from '../types.js';
|
|
|
|
import {isString, stringifyFunction} from '../util.js';
|
|
|
|
import {BidiSerializer} from './Serializer.js';
|
2022-09-21 06:10:50 +00:00
|
|
|
/**
|
|
|
|
* @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<void> {
|
|
|
|
await this.#connection.send('browsingContext.close', {
|
|
|
|
context: this.#contextId,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
override async evaluate<
|
|
|
|
Params extends unknown[],
|
|
|
|
Func extends EvaluateFunc<Params> = EvaluateFunc<Params>
|
|
|
|
>(
|
|
|
|
pageFunction: Func | string,
|
2023-02-02 14:14:28 +00:00
|
|
|
...args: Params
|
2022-09-21 06:10:50 +00:00
|
|
|
): Promise<Awaited<ReturnType<Func>>> {
|
2023-02-02 14:14:28 +00:00
|
|
|
let responsePromise;
|
|
|
|
if (isString(pageFunction)) {
|
|
|
|
responsePromise = this.#connection.send('script.evaluate', {
|
|
|
|
expression: pageFunction,
|
|
|
|
target: {context: this.#contextId},
|
|
|
|
awaitPromise: true,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
responsePromise = this.#connection.send('script.callFunction', {
|
|
|
|
functionDeclaration: stringifyFunction(pageFunction),
|
|
|
|
arguments: await Promise.all(args.map(BidiSerializer.serialize)),
|
|
|
|
target: {context: this.#contextId},
|
|
|
|
awaitPromise: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
const {result} = await responsePromise;
|
|
|
|
|
|
|
|
if ('type' in result && result.type === 'exception') {
|
|
|
|
throw new Error(result.exceptionDetails.text);
|
|
|
|
}
|
|
|
|
|
|
|
|
return BidiSerializer.deserialize(result.result) as Awaited<
|
|
|
|
ReturnType<Func>
|
|
|
|
>;
|
2022-09-21 06:10:50 +00:00
|
|
|
}
|
|
|
|
}
|