mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
843 B
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.