We have problem that doubleClick in selenium isn't working.
We are using Actions for perform doubleClick like appear here: Selenium webdriver Java code using web driver for double click a record in a grid.
After investigation and several attempts we found that it is related to the speed of the doubleClick. As you may know, speed of doubleClick can be change. Is there any option to set the speed of doubleClick in selenium?
Code used to perform the double click:
Actions actions = new Actions(webDriver);
actions.doubleClick(element).build().perform();
And we try without 'build' too:
Actions actions = new Actions(webDriver);
actions.doubleClick(element).perform();