sidebar_label |
---|
Page.addScriptTag |
Adds a <script>
tag into the page with the desired URL or content.
class Page {
addScriptTag(
options: FrameAddScriptTagOptions,
): Promise<ElementHandle<HTMLScriptElement>>;
}
Parameter |
Type |
Description |
---|---|---|
options |
Options for the script. |
Promise<ElementHandle<HTMLScriptElement>>
An element handle to the injected <script>
element.
Shortcut for page.mainFrame().addScriptTag(options).