Attempting to adjust a slider to a specific position, but it's not moving smoothly - instead, moving in bursts. Is there a way to fix this by perhaps running a piece of JavaScript code? This is the C# code I'm currently using.
List<int> Track = getTrack(distance);
var hold = builder.ClickAndHold(slider);
foreach(int t in Track)
{
hold.MoveByOffset(t, 0);
}
hold.Release().Build().Perform();