Envoyer KeyBord Key P dans Selenium Java

Actions actions = new Actions(driver);
actions.sendKeys(Keys.chord(Keys.LEFT_CONTROL, "p")).build().perform();
Mushy Manx