mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
20 lines
309 B
Markdown
20 lines
309 B
Markdown
---
|
|
sidebar_label: HTTPRequest.fetchPostData
|
|
---
|
|
|
|
# HTTPRequest.fetchPostData() method
|
|
|
|
Fetches the POST data for the request from the browser.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
class HTTPRequest {
|
|
abstract fetchPostData(): Promise<string | undefined>;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
Promise<string \| undefined>
|