puppeteer-core
Version:
A high-level API to control headless Chrome over the DevTools Protocol
96 lines (76 loc) • 2.13 kB
text/typescript
/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type * as Bidi from 'chromium-bidi/lib/cjs/protocol/protocol.js';
import type {ElementHandle} from '../api/ElementHandle.js';
import {JSHandle} from '../api/JSHandle.js';
import {UnsupportedOperation} from '../common/Errors.js';
import {BidiDeserializer} from './Deserializer.js';
import type {BidiRealm} from './Realm.js';
/**
* @internal
*/
export class BidiJSHandle<T = unknown> extends JSHandle<T> {
static from<T>(
value: Bidi.Script.RemoteValue,
realm: BidiRealm,
): BidiJSHandle<T> {
return new BidiJSHandle(value, realm);
}
readonly
override readonly realm: BidiRealm;
constructor(value: Bidi.Script.RemoteValue, realm: BidiRealm) {
super();
this.
this.realm = realm;
}
override get disposed(): boolean {
return this.
}
override async jsonValue(): Promise<T> {
return await this.evaluate(value => {
return value;
});
}
override asElement(): ElementHandle<Node> | null {
return null;
}
override async dispose(): Promise<void> {
if (this.
return;
}
this.
await this.realm.destroyHandles([this]);
}
get isPrimitiveValue(): boolean {
switch (this.
case 'string':
case 'number':
case 'bigint':
case 'boolean':
case 'undefined':
case 'null':
return true;
default:
return false;
}
}
override toString(): string {
if (this.isPrimitiveValue) {
return 'JSHandle:' + BidiDeserializer.deserialize(this.
}
return 'JSHandle@' + this.
}
override get id(): string | undefined {
return 'handle' in this.
}
remoteValue(): Bidi.Script.RemoteValue {
return this.
}
override remoteObject(): never {
throw new UnsupportedOperation('Not available in WebDriver BiDi');
}
}