docs/api/puppeteer.page.addstyletag.md
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
</th><th>Type
</th><th>Description
</th></tr></thead> <tbody><tr><td>options
</td><td>Omit<FrameAddStyleTagOptions, 'url'>
</td><td> </td></tr> </tbody></table>Returns:
Promise<ElementHandle<HTMLStyleElement>>
An element handle to the injected <link> or <style> element.
class Page {
addStyleTag(
options: FrameAddStyleTagOptions,
): Promise<ElementHandle<HTMLLinkElement>>;
}
Parameter
</th><th>Type
</th><th>Description
</th></tr></thead> <tbody><tr><td>options
</td><td> </td><td> </td></tr> </tbody></table>Returns:
Promise<ElementHandle<HTMLLinkElement>>