UiPath offers a wide range of activities to perform various automation processes. One of the most commonly used activities is UiPath Type into Activity. Here we will be going through a complete guide on how to use this with real-time examples which help you in your automation process.

What is UiPath Type Into Activity

Type into activity in uipath is one of the common activities used in the UiPath automation process. It is used to input text or query in the textbox or the search box in the application/browser. So This activity helps you to reduce the time-consuming process in data entry jobs and form filling.

This activity can be used in various use cases such as form filling, where data has to be taken from an excel sheet, and on the basis of data you have to fill the form. This activity also allows you to use Keystrokes, and hotkeys (to save files).

UiPath Type Into Activity can also be used in secure strings such as to enter credentials such as passwords. This activity is a classic activity so, to use this make sure you have to enable classic activities. Else this activity will not be visible.

For every activity to work in uipath its corresponding package is required. The package where this activity exists is “UiPath.Core.Activities.TypeInto“.

Difference Between Type Into and Set Text Activity

Now let us compare both these activities as both of these sounds similar.

ActivityType Into ActivitySet Text Activity
FunctionalitySimulates keystrokes that type a text string into a target applicationSets the text of a control, which may be a text box or other input field
Use caseUseful for applications that do not allow direct copying and pasting of datasuitable for applications that allow copying and pasting of data
Data typeSupports only text inputSupports a wide range of data types including text, numbers, and other characters
CompatibilityCompatible with most target applicationsMay not be compatible with all applications or controls

How to Use Type Into Activity in UiPath Example

As you have familiarized yourself with this activity, we will go through how you can use this activity in your process with the help of an example. Before going through how this actually works let’s check a workflow of how this activity works.

Type Into Activity Working
Type Into Activity Working

To use this activity on your uipath studio, you can follow these steps:

  1. Open your uipath studio application on your system. Now create a new process.
  2. Enabled classic activities on your uipath studio.
  3. Now search for “sequence activity “in the search tab and double-click to add it to your workflow.
  4. Now search for the “Use Application/Browser” activity to indicate the application/browser window or screen. In this example, we are using a notepad file to show the working of this activity. So now you have to indicate a notepad screen. you can choose your own screen.
  5. Now search for “Type Into Activity” and add it to your workflow. Now click on the indicate on the screen to select the screen where you want to use this activity. Here we are using the notepad application.
  6. Now Enter the text or query which you want to type into the notepad file with the help of this activity. Please note if you are passing variables then no need to add double quotes, but if you are using text on this activity make sure to add double quotes before and after your text.
  7. To save the notepad file we use the “keyboard shortcuts” activity and set Ctrl + S to save the notepad application
UiPath Type Into Activity Example Overview
Type Into Activity In UiPath Example
  1. Now save the process and run this process
  2. Now you can see your notepad application automatically opens and start writing your text on it.

Properties of Type Into Activity in UiPath

Now we will check the properties of this activity. In properties, you can set input and output values.

UiPath Type Into Activity Properties
UiPath Type Into Activity Properties
PropertiesDescription
Input Secure Text: UiPath Type Into Secure string is used to add a secure text such as passwords.
Target: It indicates the target screen
Text: It describes the text which you want to write on a particular screen. Special keys are also supported here.
%[d(ctrl)]: Button Down
%[u(ctrl)]: Button Up
OptionsAfter Disabled Element: If this option is enabled, this activity executes even if the element is disabled.
Input Mode: It is used to execute the click.
DelayBetweenKeys: It specifies the delay time between two keystrokes. The default value is 10ms to 1000ms
ClickBeforeTyping: when this option is enabled the indicated screen will be clicked before the text is written
EmptyField: When this is enabled all previous content on UI Element or screen is removed before writing.
Activate: The selected UI element is moved to the front before the text is entered.
AlterIfDisabled: Even if the screen element is disabled, the activity is still carried out.
CommonDisplayName 
DelayAfter 
DelayBefore 
ContinueOnError 

UiPath Type Into Activity Not Working

While using this activity on uipath studio, some users may face some problems. Most of the problems are caused due to lack of package and not enabling classic activities.

You should recheck both of these to fix your problem. Check whether you have installed UiPath.Core.Activities package on your process dependencies. You can see dependencies in project settings.

Conclusion

You are now fully aware of this activity’s purpose and the ways in which it may assist you in automating your chores since we have discussed it. You may increase your productivity and cut down on the time you spend on manual tasks by using this activity.

Also check, UiPath

Faq on Type Into Activity UiPath

What is type into activity in UiPath?

Type into activity in uipath helps you to automatically type in application or browser textbox or text field.

What activity can you use to type text in an application field?

To type text in an application field you can use Type into activity or Set Text activity in uipath studio

What is the difference between type into and set text activity?

The main difference between type into and set text activity is the data type. Type into only allows you to enter text data while set text allows you to enter numbers, text, and other characters.