Back to Puppeteer

Frame.addStyleTag() method

docs/api/puppeteer.frame.addstyletag.md

19.2.21.5 KB
Original Source

Frame.addStyleTag() method

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

Adds a HTMLStyleElement into the frame with the desired URL

Signature

typescript
class Frame {
  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 loaded <style> element.

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

Adds a HTMLLinkElement into the frame with the desired URL

Signature

typescript
class Frame {
  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>>

An element handle to the loaded <link> element.