Hello Everyone,
When i use inject js activity and that js file return array that time i store that data into array type generic and that give me error. so my question is which type of variable i use to store javascript array in uipath.
Please debug your process, do breakpoint after inject js activity and take screenshot from the returned result of inject js. Does mean: show from locals pane what is returned.
@Urvin_Sanghavi
Assign Activity: Newtonsoft.Json.JsonConvert.DeserializeObject(Of String())(FundCode)
should return a String Array
Ensure Newtonsoft is imported into namespaces
Hint from @Emman_Pelayo would also be an option
hey @Emman_Pelayo,
this is a right way to get the data from the inject JS.
if i have 1000 of recorders then this option give me string with concatenation right but other way i store that data into array in js file and that js array return that’s goodway to get data or not?