Selenium Java - Actions Class
Analyze the following Selenium Java code:
What will be the output in the input field after this code executes?
Actions actions = new Actions(driver);
actions.keyDown(Keys.SHIFT).sendKeys("selenium").keyUp(Keys.SHIFT).perform();What will be the output in the input field after this code executes?
