Back to Puppeteer

Page.addStyleTag() method

docs/api/puppeteer.page.addstyletag.md

19.2.21.5 KB
Original Source

Page.addStyleTag() method

<h2 id="overload-1">addStyleTag(): Promise&lt;ElementHandle&lt;HTMLStyleElement&gt;&gt;</h2>

Adds a <link rel="stylesheet"> tag into the page with the desired URL or a <style type="text/css"> tag with the content.

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

Signature

typescript
class Page {
  addStyleTag(
    options: Omit<FrameAddStyleTagOptions, 'url'>,
  ): Promise<ElementHandle<HTMLStyleElement>>;
}

Parameters

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

Parameter

</th><th>

Type

</th><th>

Description

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

options

</td><td>

Omit<FrameAddStyleTagOptions, 'url'>

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

Returns:

Promise<ElementHandle<HTMLStyleElement>>

An element handle to the injected <link> or <style> element.

<h2 id="overload-2">addStyleTag(): Promise&lt;ElementHandle&lt;HTMLLinkElement&gt;&gt;</h2>

Signature

typescript
class Page {
  addStyleTag(
    options: FrameAddStyleTagOptions,
  ): Promise<ElementHandle<HTMLLinkElement>>;
}

Parameters

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

Parameter

</th><th>

Type

</th><th>

Description

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

options

</td><td>

FrameAddStyleTagOptions

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

Returns:

Promise<ElementHandle<HTMLLinkElement>>