/** * @license * Copyright 2019 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ import type { Protocol } from 'devtools-protocol'; import type { CDPSession } from '../api/CDPSession.js'; import { ElementHandle, type AutofillData } from '../api/ElementHandle.js'; import type { AwaitableIterable } from '../common/types.js'; import type { CdpFrame } from './Frame.js'; import type { IsolatedWorld } from './IsolatedWorld.js'; import { CdpJSHandle } from './JSHandle.js'; /** * The CdpElementHandle extends ElementHandle now to keep compatibility * with `instanceof` because of that we need to have methods for * CdpJSHandle to in this implementation as well. * * @internal */ export declare class CdpElementHandle extends ElementHandle { #private; protected readonly handle: CdpJSHandle; constructor(world: IsolatedWorld, remoteObject: Protocol.Runtime.RemoteObject); get realm(): IsolatedWorld; get client(): CDPSession; remoteObject(): Protocol.Runtime.RemoteObject; get frame(): CdpFrame; contentFrame(this: ElementHandle): Promise; scrollIntoView(this: CdpElementHandle): Promise; uploadFile(this: CdpElementHandle, ...files: string[]): Promise; autofill(data: AutofillData): Promise; queryAXTree(name?: string | undefined, role?: string | undefined): AwaitableIterable>; backendNodeId(): Promise; } //# sourceMappingURL=ElementHandle.d.ts.map