[Selenium] Actions.doubleClick

WebElement el = page.getTable_AssetMixesName().get(index);
Actions action = new Actions(driver);
action.doubleClick(el);
action.sendKeys(name).build().perform();

原文地址:https://www.cnblogs.com/feifeidxl/p/4522815.html