Skip to main content
Version: 15.3.0

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>;
}

Parameters

ParameterTypeDescription
options{ url?: string; path?: string; content?: string; type?: string; id?: string; }

Returns:

Promise<ElementHandle>

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).