I am in windows environment . I want to launch my hotkeys which has global scope. I am using it with selenium webdriver . With Java I can do something similar in below manner
Robot robot = new Robot();
// Robot start writting
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_I);