2020-06-04 14:56:45 +00:00
|
|
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Frame](./puppeteer.frame.md) > [addStyleTag](./puppeteer.frame.addstyletag.md)
|
|
|
|
|
|
|
|
## Frame.addStyleTag() method
|
|
|
|
|
2020-07-09 13:22:58 +00:00
|
|
|
Adds a `<link rel="stylesheet">` tag into the page with the desired url or a `<style type="text/css">` tag with the content.
|
|
|
|
|
2020-06-04 14:56:45 +00:00
|
|
|
<b>Signature:</b>
|
|
|
|
|
|
|
|
```typescript
|
2020-07-09 13:22:58 +00:00
|
|
|
addStyleTag(options: FrameAddStyleTagOptions): Promise<ElementHandle>;
|
2020-06-04 14:56:45 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --- | --- | --- |
|
2020-07-09 13:22:58 +00:00
|
|
|
| options | [FrameAddStyleTagOptions](./puppeteer.frameaddstyletagoptions.md) | configure the CSS to add to the page. |
|
2020-06-04 14:56:45 +00:00
|
|
|
|
|
|
|
<b>Returns:</b>
|
|
|
|
|
|
|
|
Promise<[ElementHandle](./puppeteer.elementhandle.md)<!-- -->>
|
|
|
|
|
2020-07-09 13:22:58 +00:00
|
|
|
a promise that resolves to the added tag when the stylesheets's `onload` event fires or when the CSS content was injected into the frame.
|
|
|
|
|