Back to Puppeteer

Page.setContent() method

website/versioned_docs/version-24.40.0/api/puppeteer.page.setcontent.md

19.2.2589 B
Original Source

Page.setContent() method

Set the content of the page.

Signature

typescript
class Page {
  setContent(html: string, options?: WaitForOptions): Promise<void>;
}

Parameters

<table><thead><tr><th>

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

</td><td>

(Optional) Parameters that has some properties.

</td></tr> </tbody></table>

Returns:

Promise<void>