Krombik / keysender

Node.js Desktop Automation for Windows.
MIT License
75 stars 6 forks source link

`printText` method skips spaces with symbols #22

Closed ch3rn1k closed 1 year ago

ch3rn1k commented 1 year ago

Print text sometimes skips spaces and symbols, random

Example code:

import { Hardware } from 'keysender';

const desktop = new Hardware();

await desktop.keyboard.printText('Hello world! How do u do?');

Output: HelloworldHowdoudo

Exprected output: Hello world! How do u do?