UNPKG

@wdio/devtools-service

Version:

A WebdriverIO service that allows you to run Chrome DevTools commands in your tests

19 lines 455 B
export interface CDPSessionOnMessageObject { id?: number; method: string; params: Record<string, unknown>; error: { message: string; data: any; }; result?: any; } export default class DevtoolsGatherer { private _logs; onMessage(msgObj: CDPSessionOnMessageObject): void; /** * retrieve logs and clean cache */ getLogs(): CDPSessionOnMessageObject[]; } //# sourceMappingURL=devtools.d.ts.map