puppeteer/docs/api/puppeteer.page.setcontent.md

62 lines
631 B
Markdown
Raw Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: Page.setContent
---
# Page.setContent() method
Set the content of the page.
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class Page {
setContent(html: string, options?: WaitForOptions): Promise<void>;
}
```
## Parameters
<table><thead><tr><th>
2022-07-05 13:41:43 +00:00
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
html
</td><td>
string
</td><td>
HTML markup to assign to the page.
</td></tr>
<tr><td>
options
</td><td>
[WaitForOptions](./puppeteer.waitforoptions.md)
</td><td>
_(Optional)_ Parameters that has some properties.
</td></tr>
</tbody></table>
2022-07-05 13:41:43 +00:00
**Returns:**
Promise&lt;void&gt;