mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
23 lines
1.7 KiB
Markdown
23 lines
1.7 KiB
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
|
||
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [Protocol](./puppeteer.protocol.md) > [Network](./puppeteer.protocol.network.md) > [RequestWillBeSentExtraInfoEvent](./puppeteer.protocol.network.requestwillbesentextrainfoevent.md)
|
||
|
|
||
|
## Protocol.Network.RequestWillBeSentExtraInfoEvent interface
|
||
|
|
||
|
Fired when additional information about a requestWillBeSent event is available from the network stack. Not every requestWillBeSent event will have an additional requestWillBeSentExtraInfo fired for it, and there is no guarantee whether requestWillBeSent or requestWillBeSentExtraInfo will be fired first for the same request.
|
||
|
|
||
|
<b>Signature:</b>
|
||
|
|
||
|
```typescript
|
||
|
export interface RequestWillBeSentExtraInfoEvent
|
||
|
```
|
||
|
|
||
|
## Properties
|
||
|
|
||
|
| Property | Type | Description |
|
||
|
| --- | --- | --- |
|
||
|
| [associatedCookies](./puppeteer.protocol.network.requestwillbesentextrainfoevent.associatedcookies.md) | [BlockedCookieWithReason](./puppeteer.protocol.network.blockedcookiewithreason.md)<!-- -->\[\] | A list of cookies potentially associated to the requested URL. This includes both cookies sent with the request and the ones not sent; the latter are distinguished by having blockedReason field set. |
|
||
|
| [headers](./puppeteer.protocol.network.requestwillbesentextrainfoevent.headers.md) | [Headers](./puppeteer.protocol.network.headers.md) | Raw request headers as they will be sent over the wire. |
|
||
|
| [requestId](./puppeteer.protocol.network.requestwillbesentextrainfoevent.requestid.md) | [RequestId](./puppeteer.protocol.network.requestid.md) | Request identifier. Used to match this information to an existing requestWillBeSent event. |
|
||
|
|