puppeteer/docs/api/puppeteer.frame.addstyletag.md
2023-08-31 16:39:32 +02:00

843 B

sidebar_label
Frame.addStyleTag

Frame.addStyleTag() method

Adds a HTMLStyleElement into the frame with the desired URL

Signature:

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

Parameters

Parameter Type Description
options Omit<FrameAddStyleTagOptions, 'url'>

Returns:

Promise<ElementHandle<HTMLStyleElement>>

An element handle to the loaded <style> element.