Back to Puppeteer

Frame.addScriptTag() method

docs/api/puppeteer.frame.addscripttag.md

19.2.2721 B
Original Source

Frame.addScriptTag() method

Adds a <script> tag into the page with the desired url or content.

Signature

typescript
class Frame {
  addScriptTag(
    options: FrameAddScriptTagOptions,
  ): Promise<ElementHandle<HTMLScriptElement>>;
}

Parameters

<table><thead><tr><th>

Parameter

</th><th>

Type

</th><th>

Description

</th></tr></thead> <tbody><tr><td>

options

</td><td>

FrameAddScriptTagOptions

</td><td>

Options for the script.

</td></tr> </tbody></table>

Returns:

Promise<ElementHandle<HTMLScriptElement>>

An element handle to the injected <script> element.