Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 754 Bytes

puppeteer.frame.addstyletag.md

File metadata and controls

50 lines (31 loc) · 754 Bytes
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.