-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Frame model missing from trace files recorded with current Puppeteer #35
Comments
it's due to the removal of if (this._sessionId === sessionId)
this._layerTreeId = event.args['layerTreeId'] || event.args['data']['layerTreeId']; is enough as a hotfix it seems. This probably messes something up with |
Yes, the file format has changed. So you're trying to open a trace recorded in a new version with an old Chrome. |
Facing the same issue. So whats the solution? |
I was facing the same issue. The solution seems to be to use the |
Traces recorded with the current
1.3.0
version of puppeteer are missing a valid frame model, instead it's just empty.Chromium(
67.0.3391.0 dev
) as well as the online DevTools Timeline Viewer process it correctly, Chrome (66.0.3359.117
) is missing the frames counter as well, so I'm guessing something about the file format changed?Example trace file
trace.json.txt
Recorded with
Output from
example.js
Chrome
DevTools Timeline Viewer
Chromium
The text was updated successfully, but these errors were encountered: