Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はWindows環境にいます。グローバル スコープを持つホットキーを起動したいと考えています。Selenium webdriver で使用しています。Javaを使用すると、以下の方法で同様のことができます
Robot robot = new Robot(); // Robot start writting robot.keyPress(KeyEvent.VK_CONTROL); robot.keyPress(KeyEvent.VK_I);