I AM TRY TO ADD MULTIPLE VALUES IN SITES TEXT BOX . CAN ANYONE SUGGEST BEST POSSIBLE WAYS TO ACHIEVE IT
Hi @shashank_dullu ,
If the Application allows it, then you can join the items like so:
If its the entire row →
String.Join(",",CurrentRow.ItemArray)
If its an Array of Strings →
String.Join(",", arr_ofStrings)
It depends in what way the “multiple values” are present.
Kind Regards,
Ashwin A.K
Nope this is not working.
Search text box is designed in such a way that it will type one value then we have to enter and then type another . adding all in one array form and saving will not work.
@ashwin.ashok - any other way can you suggest ?
Hi
Then in that case try with expression like this in type into activity
Variable1.ToString+”[k(enter)]”+variable2.ToString
But wondering it would work on pressing enter
Did you check that one manually
Is it a enter key or tab key or a space key
If it’s not enter and it’s a space then In the above expression replace that enter keyword with space
Cheers @shashank_dullu
there are more then 50+ site to be added at one go .Expression is going to be huge in type into.
Tried for-each by keeping all the sites in excel and reading from there and passing one by one in type into but still enter or tab is not working in the process.
Using a for each or any other loop is fine
But how you are typing the value when doing manually if it’s not with enter or tab key
it is not working tried for each but not able to enter the values in loop one by one
Instead of ”[k(enter)]” Try to use Tab in the type into @shashank_dullu
Regards
Gokul
Fine
Can u mention how it is done manually with only hot keys using keyboard
Check for that option so that we can surely repeat the same steps in UiPath activity
Cheers @shashank_dullu
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.