我无法使用硒将键盘条目作为CTRL + P发送。请帮忙。
我的代码如下所示: getWebElement("Registration"(.sendKeys(Keys.chord(Keys.CONTROL, "p"((;
我已经使用相同的代码尝试了 CTRL+A,它可以正常工作。
如果您正在尝试打印,这对我有用
((JavascriptExecutor) driver).executeScript("print()");
尝试操作
Actions actions = new Actions(driver);
actions.sendKeys(Keys.chord(Keys.LEFT_CONTROL, "p")).build().perform();