Open
Bug 1590201
Opened 4 years ago
Updated 6 months ago
Implement Network.loadingFinished
Categories
(Remote Protocol :: CDP, enhancement, P3)
Remote Protocol
CDP
Tracking
(Not tracked)
NEW
People
(Reporter: impossibus, Unassigned)
References
(Blocks 2 open bugs, )
Details
(Whiteboard: [puppeteer-beta2-mvp])
Example
{"method":"Network.loadingFinished","params":{"requestId":"1000019132.773","timestamp":519174.8424,"encodedDataLength":0,"shouldReportCorbBlocking":false}
It's of course frequently emitted during a gutenberg test run because of all the page loads involved.
In Puppeteer: https://github.com/GoogleChrome/puppeteer/blob/c2651c2b5cc888ebd0ca6be87063d9f98b9eb59c/lib/NetworkManager.js#L278
Updated•4 years ago
|
Whiteboard: [puppeteer-alp
Updated•4 years ago
|
Whiteboard: [puppeteer-alp → [puppeteer-alpha]
Comment 1•4 years ago
|
||
This event is setup in the constructor of the Page
domain in Puppeteer. Puppeteer actually transforms it into NetworkManager.RequestFinished
. See the link from Maja above.
Blocks: puppeteer-gutenberg
Comment 2•4 years ago
|
||
While this event is actually being emitted a lot nothing in Gutenberg seem to rely on it. It's only happening because the Network domain is enabled by default by Puppeteer, and as such network related events are flowing in.
Updated•3 years ago
|
Whiteboard: [puppeteer-beta2-mvp]
Assignee | ||
Updated•2 years ago
|
Component: CDP: Network → CDP
Updated•6 months ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•