How to type an text value + Space + Backspace in a Type into activity

How to type an text value + Space + Backspace in a Type into activity.? I am trying to select an item from search drop down but if i pass just the text or text and enter key and all not working.

I tried - “text” +" “+”[k(back)][k(enter)]". is this correct?

1 Like

Hi @Rinku_Mohanan

String textValue = “abc”
String space = " "

Within Type Into just do by following :-

textValue+space+“[k(back)]”+“[k(enter)]”

Mark as solution and like it if this helps you :slight_smile:

Happy Automation :raised_hands:

Best Regards
Er Pratik Wavhal :robot::man_technologist:t4: :computer:

It didnt work :(. But i tried two type into activity, one for the text value and another for backspace+ enter. It worked that way. Thanks for the suggestion.

Hi @Rinku_Mohanan

If you have taken the 2nd typeInto just for Backspace and Enter then for that you can use Send HotKey Activity instead of 2nd TypeInto.

As a best practices it is more beneficial as per my experience

Mark as solution and like it if this helps you :slight_smile:

Happy Automation :raised_hands:

Best Regards
Er Pratik Wavhal :robot::man_technologist:t4: :computer:

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