crash_report_context
CrashReportContextEntry
dataclass
Key-value pair in CrashReportContext.
Source code in zendriver/cdp/crash_report_context.py
frame_id: page.FrameId
instance-attribute
key: str
instance-attribute
value: str
instance-attribute
__init__(key, value, frame_id)
from_json(json)
classmethod
get_entries()
Returns all entries in the CrashReportContext across all frames in the page.
Returns:
| Type | Description |
|---|---|
Generator[T_JSON_DICT, T_JSON_DICT, List[CrashReportContextEntry]]
|
|