I am using Tricentis Tosca to automate a webpage that has a slider in it.
{MOUSE[DRAG]} and {MOUSE[DROP]} are not working, it seems it just clicks the slider at half.
I tried to use also [Smooth], [Jump], [OrizontalFirst] as per description.
I was hoping to use javaScript to fix this problem but dragging and dropping the element doesn't do anything.
It looks like the slider is triggered not when it reaches its max value but when the left mouse is released.
Strange thing is that if i run the entire test it does not work (mouse pointer not moving). If i run only the test step on a open page it works and you can see the mouse pointer moving.
This is the slider:
<input ng-disabled="ngDisabled" id="dbssSlider" type="range" min="0" max="100" step="1" ng-change="setMoving()" ng-model="ngModel" automationid="template_slider_input_2_1630939837194086509" class="ng-valid ng-not-empty ng-valid-min ng-valid-max ng-valid-step ng-dirty ng-valid-number ng-touched" style="" value="100">
Is there a way to activate the slider? Even without the sliding.
Thank you.