WebDriver , :
, , ..
// Actions, .
Actions builder = new Actions(driver);
1:
// Action, /
Action action = builder.doubleClick(element);
// / build() perform().
action.build().perform();
2:
// build() perform() Action
builder.doubleClick().build().perform();