Class WebDriverLogs

Interface for managing WebDriver log records.

Index

Constructor methods

Methods

Constructor methods

constructor(driver: WebDriver): WebDriverLogs

constructor

Parameters

Returns

WebDriverLogs

Methods

public get(type: string): Promise

Fetches available log entries for the given type.

Note that log buffers are reset after each call, meaning that available log entries correspond to those entries not yet returned for a given log type. In practice, this means that this call will return the available log entries since the last call, or from the start of the session.

Parameters

  • type: string

    The desired log type.

Returns

Promise

A promise that will resolve to a list of log entries for the specified type.

public getAvailableLogTypes(): Promise

Retrieves the log types available to this driver.

Returns

Promise

A promise that will resolve to a list of available log types.