Method: Appium::Driver#log_events

Defined in:
lib/appium_lib/driver.rb

#log_events(type = nil) ⇒ Hash

Returns events with filtering with ‘type’. Defaults to all available events.

Examples:


log_events #=> {}
log_events #=> {'commands' => [{'cmd' => 123455, ....}], 'startTime' => 1572954894127, }

Parameters:

  • type (String) (defaults to: nil)

    The type of events to get

Returns:

  • (Hash)

Raises:

Since:

  • Appium 1.16.0

[View source] [View on GitHub]

882
883
884
885
886
# File 'lib/appium_lib/driver.rb', line 882

def log_events(type = nil)
  raise NoDriverInstanceError if @driver.nil?

  @driver.logs.events(type)
end