mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
20 lines
445 B
Markdown
20 lines
445 B
Markdown
---
|
|
sidebar_label: HTTPRequest.continueRequestOverrides
|
|
---
|
|
|
|
# HTTPRequest.continueRequestOverrides() method
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
class HTTPRequest {
|
|
continueRequestOverrides(): ContinueRequestOverrides;
|
|
}
|
|
```
|
|
|
|
**Returns:**
|
|
|
|
[ContinueRequestOverrides](./puppeteer.continuerequestoverrides.md)
|
|
|
|
the `ContinueRequestOverrides` that will be used if the interception is allowed to continue (ie, `abort()` and `respond()` aren't called).
|