mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
fix: continue requests without network instrumentation (#10046)
This commit is contained in:
@@ -10,10 +10,10 @@ The initiator of the request.
|
||||
|
||||
```typescript
|
||||
class HTTPRequest {
|
||||
initiator(): Protocol.Network.Initiator;
|
||||
initiator(): Protocol.Network.Initiator | undefined;
|
||||
}
|
||||
```
|
||||
|
||||
**Returns:**
|
||||
|
||||
Protocol.Network.Initiator
|
||||
Protocol.Network.Initiator \| undefined
|
||||
|
||||
@@ -197,8 +197,8 @@ version of Chrome or Chromium, pass in the executable's path when creating a
|
||||
const browser = await puppeteer.launch({executablePath: '/path/to/Chrome'});
|
||||
```
|
||||
|
||||
You can also use Puppeteer with Firefox Nightly (experimental support). See
|
||||
[`Puppeteer.launch`](https://pptr.dev/api/puppeteer.puppeteernode.launch) for
|
||||
You can also use Puppeteer with Firefox. See
|
||||
[status of cross-browser support](https://pptr.dev/faq/#q-what-is-the-status-of-cross-browser-support) for
|
||||
more information.
|
||||
|
||||
See
|
||||
|
||||
Reference in New Issue
Block a user