20 lines
239 B
Markdown
20 lines
239 B
Markdown
---
|
|
sidebar_label: Page.content
|
|
---
|
|
|
|
# Page.content() method
|
|
|
|
The full HTML contents of the page, including the DOCTYPE.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class Page {
|
|
content(): Promise<string>;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
Promise<string>
|