I am reading an excel file for inputs and then passing that inputs to the website forms, the input is very long so I am using Hardware events because Chromium API is not working for larger inputs, which is making the process slow.
So is there a way that I can directly paste the inputs into text inputs, instead of typing them?
you can use the “Set Text” activity with the “SimulateType” or “SendWindowMessages” property enabled. These options allow you to paste the text into the text input field, bypassing the need for typing and making the process faster.
After adding the “Set Text” activity, you’ll find the “SimulateType” and “SendWindowMessages” properties in the properties panel.
Set either “SimulateType” or “SendWindowMessages” property to True. These options allow you to perform the paste operation without actually typing each character
Have you tried with changing the Input method option to Simulate for Type into activity.
It will enter the data very fast in simulate. Try with it. @Sami_Rajput