The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/tests/pageobjects/keyboard.js

20 lines
301 B

const Keys = {
TAB: '\uE004',
ENTER: '\uE007',
ESCAPE: 'u\ue00c',
};
const sendEnter = function() {
browser.keys(Keys.ENTER);
};
const sendEscape = function() {
browser.keys(Keys.ESCAPE);
};
const sendTab = function() {
browser.keys(Keys.TAB);
};
export { sendEnter, sendEscape, sendTab };