Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.01 KB

puppeteer.page.addscripttag.md

File metadata and controls

37 lines (26 loc) · 1.01 KB
sidebar_label
Page.addScriptTag

Page.addScriptTag() method

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

Signature:

class Page {
  addScriptTag(options: {
    url?: string;
    path?: string;
    content?: string;
    type?: string;
    id?: string;
  }): Promise<ElementHandle<HTMLScriptElement>>;
}

Parameters

Parameter Type Description
options { url?: string; path?: string; content?: string; type?: string; id?: string; }

Returns:

Promise<ElementHandle<HTMLScriptElement>>

Promise which resolves to the added tag when the script's onload fires or when the script content was injected into frame.

Remarks

Shortcut for page.mainFrame().addScriptTag(options).