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