Class: Selenium::WebDriver::BiDi::GenericLogEntry
- Inherits:
-
BaseLogEntry
- Object
- BaseLogEntry
- Selenium::WebDriver::BiDi::GenericLogEntry
- Defined in:
- lib/selenium/webdriver/bidi/log/generic_log_entry.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from BaseLogEntry
#level, #stack_trace, #text, #timestamp
Instance Method Summary collapse
-
#initialize(level:, text:, timestamp:, type:, stack_trace:) ⇒ GenericLogEntry
constructor
A new instance of GenericLogEntry.
Constructor Details
#initialize(level:, text:, timestamp:, type:, stack_trace:) ⇒ GenericLogEntry
Returns a new instance of GenericLogEntry.
26 27 28 29 |
# File 'lib/selenium/webdriver/bidi/log/generic_log_entry.rb', line 26 def initialize(level:, text:, timestamp:, type:, stack_trace:) super(level: level, text: text, timestamp: , stack_trace: stack_trace) @type = type end |
Instance Attribute Details
#type ⇒ Object
Returns the value of attribute type.
24 25 26 |
# File 'lib/selenium/webdriver/bidi/log/generic_log_entry.rb', line 24 def type @type end |