puppeteer/docs/api/puppeteer.frame.addstyletag.md
jrandolf 5ff205dc8b
fix: extends ElementHandle to Nodes (#8552)
* fix: extends `ElementHandle` to `Node`s (#8552)
2022-07-06 09:05:37 +02:00

936 B

sidebar_label
Frame.addStyleTag

Frame.addStyleTag() method

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

Signature:

class Frame {
  addStyleTag(options: FrameAddStyleTagOptions): Promise<ElementHandle<Node>>;
}

Parameters

Parameter Type Description
options FrameAddStyleTagOptions configure the CSS to add to the page.

Returns:

Promise<ElementHandle<Node>>

a promise that resolves to the added tag when the stylesheets's onload event fires or when the CSS content was injected into the frame.