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.