puppeteer/docs/api/puppeteer.httpresponse.text.md

20 lines
268 B
Markdown
Raw Permalink Normal View History

2022-07-05 13:41:43 +00:00
---
sidebar_label: HTTPResponse.text
---
# HTTPResponse.text() method
Promise which resolves to a text (utf8) representation of response body.
#### Signature:
2022-07-05 13:41:43 +00:00
```typescript
class HTTPResponse {
text(): Promise<string>;
}
```
**Returns:**
Promise&lt;string&gt;