UNPKG

@wdio/devtools-service

Version:

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

13 lines (12 loc) 252 B
export default class DevtoolsGatherer { _logs = []; onMessage(msgObj) { this._logs.push(msgObj); } /** * retrieve logs and clean cache */ getLogs() { return this._logs.splice(0, this._logs.length); } }