- Visit a page where you have two links.
- Hover over the first link and wait until a preview is shown.
- Ctrl (Cmd) click the link or preview to open it in a background tab. Notice that the "opened" is sent. I got data that looks like this:
{ action: "opened", hovercardsSuppressedByGadget: false, isAnon: true, linkInteractionToken: "78aa287599a133ba", namespaceIdSource: 0, pageIdSource: 305, pageTitleSource: "1", pageToken: "b2e294b492296b45", popupEnabled: true, previewCountBucket: "21+ previews", sessionToken: "423642141808eba6", totalInteractionTime: 2951 }
- Hover over the other link and notice that a "dwelledButAbandoned" event for the previous link is sent. This is the data I got:
{"pageTitleSource":"1", "namespaceIdSource":0, "pageIdSource":305, "isAnon":true, "popupEnabled":true, "pageToken":"b2e294b492296b45", "sessionToken":"423642141808eba6", "hovercardsSuppressedByGadget":false, "previewCountBucket":"21+ previews", "totalInteractionTime":null, "action":"dwelledButAbandoned"}"
- An "opened" event for the second link is also sent as expected. The data I got is:
{"pageTitleSource":"1", "namespaceIdSource":0, "pageIdSource":305, "isAnon":true, "popupEnabled":true, "pageToken":"b2e294b492296b45", "sessionToken":"423642141808eba6", "hovercardsSuppressedByGadget":false, "previewCountBucket":"21+ previews", "action":"opened", "linkInteractionToken":"744e8c9c86a0cb41", "totalInteractionTime":3185}"
Expected: No "dwelledButAbandoned" event is sent in step 4.