Skip to content

Interface: IEventCommands

@appium/types.IEventCommands

Hierarchy

  • IEventCommands

Driver

Table of contents

Methods

Methods

getLogEvents

getLogEvents(type?): Promise<EventHistory | Record<string, number>>

Get a list of events that have occurred in the current session

Parameters

Name Type Description
type? string | string[] filter the returned events by including one or more types

Returns

Promise<EventHistory | Record<string, number>>

The event history for the session

Defined in

packages/types/lib/driver.ts:157


logCustomEvent

logCustomEvent(vendor, event): Promise<void>

Add a custom-named event to the Appium event log

Parameters

Name Type Description
vendor string the name of the vendor or tool the event belongs to, to namespace the event
event string the name of the event itself

Returns

Promise<void>

Defined in

packages/types/lib/driver.ts:148