Class: Selenium::WebDriver::LogEntry

Inherits:
Object
  • Object
show all
Defined in:
sig/gems/selenium/log_entry.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeLogEntry

Returns a new instance of LogEntry.

Parameters:

  • level (Object)
  • message (String)
  • timestamp (Integer)


9
# File 'sig/gems/selenium/log_entry.rbs', line 9

def initialize: (untyped level, String message, Integer timestamp) -> void

Instance Attribute Details

#levelObject (readonly)

Keep attributes loose to avoid downstream mismatches; refine later if desired.

Returns:

  • (Object)


5
6
7
# File 'sig/gems/selenium/log_entry.rbs', line 5

def level
  @level
end

#messageString (readonly)

Returns the value of attribute message.

Returns:

  • (String)


6
7
8
# File 'sig/gems/selenium/log_entry.rbs', line 6

def message
  @message
end

#timestampInteger (readonly)

Returns the value of attribute timestamp.

Returns:

  • (Integer)


7
8
9
# File 'sig/gems/selenium/log_entry.rbs', line 7

def timestamp
  @timestamp
end