executeBrowserCommand method

Future<void> executeBrowserCommand(
  1. BrowserCommandId commandId
)

Invoke custom browser commands used by telemetry.

Implementation

Future<void> executeBrowserCommand(BrowserCommandId commandId) async {
  await _client.send('Browser.executeBrowserCommand', {
    'commandId': commandId,
  });
}