Error code corresponding to the error message.
Supported frameworks | Tealeaf UI Capture |
Path | <global>.<session>.<message>.domCapture.errorCode |
Description | Error code corresponding to the error message |
Value | Number |
Limitations | None |
Dependencies | Used by Replay |
Example
This example shows the Type 12 DOM Capture error message:
{
// DOM Capture messages use type 12
"type": 12,
// The standard UIC message properties
"offset": 16821,
"screenviewOffset": 16817,
"count": 5,
"fromWeb": true,
// The DOM Capture data is namespaced in the domCapture object
"domCapture": {
// The "error" contains the verbose error message explaining why the DOM Capture couldn't be performed.
"error": "Captured length (18045) exceeded limit (10000).",
// The "errorCode" contains the numeric code for this error message. Currently, there is only 1 error message.
"errorCode": 101,
// The "dcid" property contains the unique string identifying this DOM Capture within the page instance.
"dcid": "dcid-1.1414088027401"
}
}