fix: continue requests without network instrumentation (#10046)

This commit is contained in:
Alex Rudenko
2023-04-20 14:28:56 +02:00
committed by GitHub
parent 57c5727424
commit 8283823cb8
6 changed files with 79 additions and 16 deletions

View File

@@ -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

View File

@@ -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