I am faced with a task of testing a collection of 10 JQuery UI sliders in a systematic manner.
Specifically, I am required to manually drag each slider handle and verify the current value of the slider.
My attempts at achieving this through various methods on the Selenium driver, such as:
handle = find(".ui-slider-handle")
find("#category_weight_#{cw.id}").native.drag_and_drop_by(handle,'10px')
Have been resulting in deprecation errors, and I am struggling to find adequate examples of utilizing the new action builder in selenium.
If there is someone who has experience with this task, could you offer any advice?