puppeteer/new-docs/puppeteer.frame.addscripttag.md

27 lines
887 B
Markdown
Raw Normal View History

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [puppeteer](./puppeteer.md) &gt; [Frame](./puppeteer.frame.md) &gt; [addScriptTag](./puppeteer.frame.addscripttag.md)
## Frame.addScriptTag() method
Adds a `<script>` tag into the page with the desired url or content.
<b>Signature:</b>
```typescript
addScriptTag(options: FrameAddScriptTagOptions): Promise<ElementHandle>;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| options | [FrameAddScriptTagOptions](./puppeteer.frameaddscripttagoptions.md) | configure the script to add to the page. |
<b>Returns:</b>
Promise&lt;[ElementHandle](./puppeteer.elementhandle.md)<!-- -->&gt;
a promise that resolves to the added tag when the script's `onload` event fires or when the script content was injected into the frame.