我正在使用Selenium webdriver(Java)并遇到了问题。
我制作了这个方法,
public void escape() {
Actions action = new Actions(driver);
action.sendKeys(Keys.ESCAPE).build().perform();
}
但它不适用于Safari。它适用于除Safari之外的所有其他浏览器(IE,Firefox,Chrome)。使用selenium的Safari的备用转义方法是什么?