2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Frame.addScriptTag
|
|
|
|
---
|
|
|
|
|
|
|
|
# Frame.addScriptTag() method
|
|
|
|
|
|
|
|
Adds a `<script>` tag into the page with the desired url or content.
|
|
|
|
|
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Frame {
|
2022-07-06 07:05:37 +00:00
|
|
|
addScriptTag(
|
|
|
|
options: FrameAddScriptTagOptions
|
|
|
|
): Promise<ElementHandle<HTMLScriptElement>>;
|
2022-07-05 13:41:43 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
2022-08-10 21:34:29 +00:00
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ------------------------------------------------------------------- | ----------------------- |
|
|
|
|
| options | [FrameAddScriptTagOptions](./puppeteer.frameaddscripttagoptions.md) | Options for the script. |
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
2022-07-06 07:05:37 +00:00
|
|
|
Promise<[ElementHandle](./puppeteer.elementhandle.md)<HTMLScriptElement>>
|
2022-07-05 13:41:43 +00:00
|
|
|
|
|
|
|
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.
|