Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Selenium Webdriver 中使用Control++之类的键盘选项。在这种情况下有人可以帮我吗?AltS
如果您使用的是 JAVA:
String saveIt = Keys.chord(Keys.CONTROL, "s"); driver.findElement(By.whatever("anything")).sendKeys(saveIt);
更新 感谢 Slanec 指出 Keys.chord 可以接受两个以上的键。