Selenium Java - Actions Class
What will be the result of the following Selenium Java code snippet?
Actions actions = new Actions(driver);
actions.keyDown(Keys.SHIFT).sendKeys("hello").keyUp(Keys.SHIFT).perform();