I need to press Alt + I at the same time
Actions actions=new Actions(driver); actions.sendKeys(Keys.chord(Keys.chord(Keys.ALT+"i"))).build().perform();
It doesn't work
I need to press Alt + I at the same time
Actions actions=new Actions(driver); actions.sendKeys(Keys.chord(Keys.chord(Keys.ALT+"i"))).build().perform();
It doesn't work