1:
2:
Hi all, i used type into activity to type text into the text box next to the Title. However, it kept typing the text into (second pic). Helps
3:
@monicaong0609
Can you please share the error screenshot?

What you described and the error screenshot does not go together…can you please elaborate and show us the selectors as well
In the selector tree from the centre top menu of the ui explorer window …try selecting each row and check one row would contain the title label name in it …use that in selector to make it unique to this title
Cheers


The
You can actially use replace instead of the way you are trying to do TitleName.Replace("-","").Trim unless you have more data after the second part
Now coming to the issue…as per error it looks like there are some other characters…add a trim to ensure no new line characters are present
Hope this helps
Cheers
Just to check can you remove the variable part and try to use type into…
Also before running remove everything and add back and rerun
Cheers
I think you need to escape the left bracket before CHK/OS - UiPath is expecting a special key syntax. You can escape it with adding another left bracket:
"[[CHK/OS]"+titleNameNew.ToString.Trim
thank you so much for ur help and yes indeed was the tat was causing probs
Include the space inside the quotes:
"[[CHK/OS]"+" "+titleNameNew.ToString.Trim
Thank you ! it works!!