Adds a <link rel="stylesheet">
tag into the page with the desired URL or a <style type="text/css">
tag with the content.
Shortcut for page.mainFrame().addStyleTag(options).
class Page {
addStyleTag(
options: Omit<FrameAddStyleTagOptions, 'url'>,
): Promise<ElementHandle<HTMLStyleElement>>;
}
Parameter | Type | Description |
---|---|---|
options | Omit<[FrameAddStyleTagOptions](./puppeteer.frameaddstyletagoptions.md), 'url'> |
Returns:
Promise<ElementHandle<HTMLStyleElement>>
An element handle to the injected <link>
or <style>
element.
class Page {
addStyleTag(
options: FrameAddStyleTagOptions,
): Promise<ElementHandle<HTMLLinkElement>>;
}
Parameter | Type | Description |
---|---|---|
options | [FrameAddStyleTagOptions](./puppeteer.frameaddstyletagoptions.md) |
Returns:
Promise<ElementHandle<HTMLLinkElement>>