Type Intoo

How to make type into work in this format…

The textbox word will be like
Uipath

My input text is
I like

My output should be
I like Uipath

The thing here is put my input string as a starting string in the textbox which already consist of some text in it

kindly Put like this in type into
“I like “ + variable1
Where variable1 is a variable of type string which has the value as “UiPath”

Cheers @Sweety_Girl

Hi … @Sweety_Girl Type into activity have some properties one of those is Empty Files is you check this then before typing into the textbox it will clear the value and then it will perform typeinto and then in you assign activity do like this "i like "+your_varible

Hi @Sweety_Girl

If I would be the one to automate it, what I will do is:

  1. Use Get Text activity to get the current value of the textbox. Let’s say you store the output to strCurrentVal variable.
  2. Store the input text in a variable. (Let’s say strInput as the variable name)
  3. Use Type Into activity. The Text input should be strInput + " " + strCurrentVal

That would do it.
Thanks and regards :slight_smile:

11 Likes

“I like” is not a constant string… It is the text which is inside the textbox, which can vary and not constant

1 Like

“I like” is not a constant string… It is the text which is inside the textbox, which can vary and not constant

1 Like

fine… @Sweety_Girl use get text activity to get the text inside the textbox and then store it in one variable and then use it.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.