Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 975 Bytes

puppeteer.frame.addstyletag.md

File metadata and controls

29 lines (20 loc) · 975 Bytes
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<HTMLStyleElement | HTMLLinkElement>>;
}

Parameters

Parameter Type Description
options FrameAddStyleTagOptions Options for the style link.

Returns:

Promise<ElementHandle<HTMLStyleElement | HTMLLinkElement>>

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.