press method

Future<Online> press(
  1. Key key, {
  2. bool show = true,
})

Implementation

Future<Online> press(Key key, {bool show = true}) async {
  if (show) Show.action('pressing', key.toString());

  await (await page).keyboard.press(key);
  return this;
}