Class: Selenium::WebDriver::BiDi::Protocol::Log Private
| Relationships & Source Files | |
| Namespace Children | |
|
Classes:
| |
| Super Chains via Extension / Inclusion / Inheritance | |
|
Class Chain:
self,
Domain
|
|
|
Instance Chain:
self,
Domain
|
|
| Inherits: |
Selenium::WebDriver::BiDi::Protocol::Domain
|
| Defined in: | rb/lib/selenium/webdriver/bidi/protocol/log.rb |
Overview
Constant Summary
-
BaseLogEntry =
# File 'rb/lib/selenium/webdriver/bidi/protocol/log.rb', line 59
Serialization::Record.define( level: {wire_key: 'level', enum: 'Log::LEVEL'}, source: {wire_key: 'source', ref: 'Script::Source'}, text: {wire_key: 'text', nullable: true, primitive: 'string'}, timestamp: {wire_key: 'timestamp', primitive: 'integer'}, stack_trace: {wire_key: 'stackTrace', required: false, ref: 'Script::StackTrace'} )
-
ConsoleLogEntry =
# File 'rb/lib/selenium/webdriver/bidi/protocol/log.rb', line 82
Serialization::Record.define( type: {fixed: 'console'}, level: {wire_key: 'level', enum: 'Log::LEVEL'}, source: {wire_key: 'source', ref: 'Script::Source'}, text: {wire_key: 'text', nullable: true, primitive: 'string'}, timestamp: {wire_key: 'timestamp', primitive: 'integer'}, stack_trace: {wire_key: 'stackTrace', required: false, ref: 'Script::StackTrace'}, method_: {wire_key: 'method', primitive: 'string'}, args: {wire_key: 'args', ref: 'Script::RemoteValue', list: true} )
-
EVENTS =
# File 'rb/lib/selenium/webdriver/bidi/protocol/log.rb', line 31{ entry_added: 'log.entryAdded' }.freeze -
EVENT_TYPES =
# File 'rb/lib/selenium/webdriver/bidi/protocol/log.rb', line 105{ 'log.entryAdded' => Log::Entry }.freeze -
GenericLogEntry =
# File 'rb/lib/selenium/webdriver/bidi/protocol/log.rb', line 70
Serialization::Record.define( level: {wire_key: 'level', enum: 'Log::LEVEL'}, source: {wire_key: 'source', ref: 'Script::Source'}, text: {wire_key: 'text', nullable: true, primitive: 'string'}, timestamp: {wire_key: 'timestamp', primitive: 'integer'}, stack_trace: {wire_key: 'stackTrace', required: false, ref: 'Script::StackTrace'}, type: {wire_key: 'type', primitive: 'string'} )
-
JavascriptLogEntry =
# File 'rb/lib/selenium/webdriver/bidi/protocol/log.rb', line 96
Serialization::Record.define( type: {fixed: 'javascript'}, level: {wire_key: 'level', enum: 'Log::LEVEL'}, source: {wire_key: 'source', ref: 'Script::Source'}, text: {wire_key: 'text', nullable: true, primitive: 'string'}, timestamp: {wire_key: 'timestamp', primitive: 'integer'}, stack_trace: {wire_key: 'stackTrace', required: false, ref: 'Script::StackTrace'} )
-
LEVEL =
# File 'rb/lib/selenium/webdriver/bidi/protocol/log.rb', line 36
{ debug: 'debug', info: 'info', warn: 'warn', error: 'error' }.freeze
Class Method Summary
Instance Method Summary
Constructor Details
This class inherits a constructor from Selenium::WebDriver::BiDi::Protocol::Domain