Ui path performance improvement ideas

Hi friends

I have 100+ records in excel.
I have to enter it in web page.

For example , Read Name and Phone No from excel and type it in Web site and submit.

I am iterating through for each , and typing it in web one by one.
It takes time. Do we have any other option to make it faster.

thanks for your help.

1 Like

Hi @oshan,
Here you are reading the excel using read range and store the data in a datatable.
Then iterating on the datatable using for each.
And entering the data in to web form.
Right?
I think this is the only way you can in this case.
One way to improve the process speed is by communicating with the webform using API, if available.

2 Likes

Another way to make the data input faster is by enabling Simulate Type on your Type Into activities.

1 Like

Thank you both for your kind reply. i understood.

1 Like