I have one project and use selenium and chrome driver; I want use Ctrl + F in page and when open find bar type word in text box find bar and click in next or previous button in find bar; For open find bar i do this:
Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_F);
robot.keyRelease(KeyEvent.VK_F);
robot.keyRelease(KeyEvent.VK_CONTROL);
please help to continue