i have a slide thing… salary… this is not a always same… salary is changes from person to person … i have to dynamic this how can i do
this is website:RPA in Practice 2020 Challange
i have a slide thing… salary… this is not a always same… salary is changes from person to person … i have to dynamic this how can i do
this is website:RPA in Practice 2020 Challange
Hi @katta_nikhil ,
You can try this. How to Drag a Slider Control in Browser to a specific value in UiPath Learner - YouTube
Hi,
One of the easiest ways is to use InjectJsScript as the following.
set value at Parameter, then
"function(e,v) {e.value=v;
let evt = new Event('change');
e.dispatchEvent(evt);
}"
Sample20230515-6Lv2.zip (5.8 KB)
Edit : add code to fire event.
Regards,
Hope this helps
You can just use set attribute activity and set the value attribute to required number
cheers