aboutsummaryrefslogtreecommitdiff
path: root/e2e/ambassador/src/client/keys.js
blob: af0fb3d4c96aecd79a24247eff5dc7c4cd3987f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { EVENT_KEYPRESS, EVENT_KEYDOWN, EVENT_KEYUP } from '../shared/messages';
import * as ipc from './ipc';

const press = (tabId, key) => {
  return ipc.send({
    type: EVENT_KEYPRESS,
    tabId,
    key,
  });
};

const down = (tabId, key) => {
  return ipc.send({
    type: EVENT_KEYDOWN,
    tabId,
    key,
  });
};


const up = (tabId, key) => {
  return ipc.send({
    type: EVENT_KEYUP,
    tabId,
    key,
  });
};

export { press, down, up };