puppeteer-core
Version:
A high-level API to control headless Chrome over the DevTools Protocol
47 lines (39 loc) • 1.07 kB
text/typescript
/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type {CdpFrame} from './Frame.js';
/**
* @internal
*/
export class CdpPreloadScript {
/**
* This is the ID of the preload script returned by
* Page.addScriptToEvaluateOnNewDocument in the main frame.
*
* Sub-frames would get a different CDP ID because
* addScriptToEvaluateOnNewDocument is called for each subframe. But
* users only see this ID and subframe IDs are internal to Puppeteer.
*/
constructor(mainFrame: CdpFrame, id: string, source: string) {
this.
this.
this.
}
get id(): string {
return this.
}
get source(): string {
return this.
}
getIdForFrame(frame: CdpFrame): string | undefined {
return this.
}
setIdForFrame(frame: CdpFrame, identifier: string): void {
this.
}
}