A unique identifier for the DOM Capture snapshot that helps in associating the type 12 DOM Capture with its corresponding type 4 or type 2 trigger message.
Supported frameworks | Tealeaf UI Capture |
Path | <global>.<session>.<message>.domCapture.dcid |
Description | A unique identifier for the DOM Capture snapshot that helps in associating the type 12 DOM Capture with its corresponding type 4 or type 2 trigger message. |
Value | An opaque string that is unique within the context of all other DOM snapshots that originate from this application page. |
Limitations | None |
Dependencies | Replay uses it to uniquely identify the DOM Snapshot that is associated with the corresponding type 4 and type 2 messages. |
Note: DCID = DOM capture identifier. The "Loads without DCIDs by UIC" means that the page load event was captured and will be available for reports, but it will not be viewable in replay.
Examples
This example shows the dcid property in the Type 12 DOM Capture message:
{
// DOM Capture messages use type 12
"type": 12,
// The standard UIC message properties
"offset": 16821,
"screenviewOffset": 16817,
"count": 5,
"fromWeb": true,
"domCapture": {
"dcid": "dcid-3"
"charset": "ISO-8859-1",
"root": "<html><body><iframe id="greeting.html" tltid="tlt-4"/></body></html>",
"host": "http://www.uictest.com",
"url": "/h4/dcTest.html",
"eventOn": true,
"frames": [
{
"tltid": "tlt-4",
"root": "<html><body>Hello, World!</body></html>",
"charset": "ISO-8859-1",
"host": "http://www.uictest.com",
"url": "/h4/greeting.html"
}
],
"canvas": []
}
}
}