log
EntryAdded
dataclass
Issued when new message was logged.
Source code in zendriver/cdp/log.py
LogEntry
dataclass
Log entry.
Source code in zendriver/cdp/log.py
args: typing.Optional[typing.List[runtime.RemoteObject]] = None
class-attribute
instance-attribute
category: typing.Optional[str] = None
class-attribute
instance-attribute
level: str
instance-attribute
line_number: typing.Optional[int] = None
class-attribute
instance-attribute
network_request_id: typing.Optional[network.RequestId] = None
class-attribute
instance-attribute
source: str
instance-attribute
stack_trace: typing.Optional[runtime.StackTrace] = None
class-attribute
instance-attribute
text: str
instance-attribute
timestamp: runtime.Timestamp
instance-attribute
url: typing.Optional[str] = None
class-attribute
instance-attribute
worker_id: typing.Optional[str] = None
class-attribute
instance-attribute
__init__(source, level, text, timestamp, category=None, url=None, line_number=None, stack_trace=None, network_request_id=None, worker_id=None, args=None)
from_json(json)
classmethod
Source code in zendriver/cdp/log.py
to_json()
Source code in zendriver/cdp/log.py
ViolationSetting
dataclass
Violation configuration setting.
Source code in zendriver/cdp/log.py
name: str
instance-attribute
threshold: float
instance-attribute
__init__(name, threshold)
from_json(json)
classmethod
clear()
disable()
Disables log domain, prevents further log entries from being reported to the client.
Source code in zendriver/cdp/log.py
enable()
Enables log domain, sends the entries collected so far to the client by means of the
entryAdded
notification.
Source code in zendriver/cdp/log.py
start_violations_report(config)
start violation reporting.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
List[ViolationSetting]
|
Configuration for violations. |
required |