I'm currently developing a RPA application. I need to type a text in keyboard, but I need this process to be executed instantly (as if it were a copy and paste).
I've tried Nut.js and Robotjs but both of these have a delay between one key and another even if I configure the delay to 0ms or 1ms.
Someone know another automation library to make this process of typing immediate? Or should I try Python?
You could use the
pypercliplibrary to first copy text using thepyperclip.copy()function and then usePyAutoGuilibrary to paste the text. The pyperclip doesn't have a built-in function to paste but using both of these we can make it work.Example: