You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But You filter interactions with interactionID = 0. It gets only interaction without ID. The documentation says that only interactions with ID are made by user
if (!entry.interactionId) continue;
Here, We are in for loop, when interactionID is 0 they continue and don't log this interaction.
When I use snippets from web.dev and Your at the same time, I see logs in console only from snippet from web.dev.
webperf-snippets/pages/Interaction/Interactions.mdx
Line 26 in 080be73
Please check the snippet for interaction:
I see that this snippet logs interaction only with interactionId = 0, and it seems to be wrong, according to documentation and example here: https://web.dev/articles/diagnose-slow-interactions-in-the-lab?hl=pl#use_a_javascript_snippet
We should log with interactionId > 0.
The text was updated successfully, but these errors were encountered: