Feature and motivation
Add a constructor to Actions class to adjust duration. For reference, Appium prefers 50ms to the default 250ms
Putting it in Actions constructor is much lower impact than adding the parameter to each method.
This applies to .NET & Java as other bindings allow changing it.
(I'm splitting this out from #10724 so we can close that one)
Usage example
new Actions(driver, Duration.ofMillis(50))
.moveByOffset(13, 15)
.perform();
Feature and motivation
Add a constructor to Actions class to adjust duration. For reference, Appium prefers 50ms to the default 250ms
Putting it in Actions constructor is much lower impact than adding the parameter to each method.
This applies to .NET & Java as other bindings allow changing it.
(I'm splitting this out from #10724 so we can close that one)
Usage example