key_down method

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

Implementation

Future<Online> key_down(Key key, {bool show = true}) async {
  if (show) Show.action('key down', key.toString());
  await (await page).keyboard.down(key);
  return this;
}