Actions a = new Actions(driver);

//Double click on element
WebElement button = driver.findElement(By.xpath("locator"));

a.doubleClick(button).perform();