docs/api/puppeteer.frame.addstyletag.md
Adds a HTMLStyleElement into the frame with the desired URL
class Frame {
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 loaded <style> element.
Adds a HTMLLinkElement into the frame with the desired URL
class Frame {
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>>
An element handle to the loaded <link> element.