We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5fb450 commit 38a7e85Copy full SHA for 38a7e85
lib/keyboard.class.ts
@@ -45,7 +45,7 @@ export class KeyboardClass {
45
return new Promise<KeyboardClass>(async (resolve, reject) => {
46
try {
47
if (inputIsString(input)) {
48
- for (const char of input.join(" ").split("")) {
+ for (const char of input.join(" ")) {
49
await sleep(this.config.autoDelayMs);
50
await this.providerRegistry.getKeyboard().type(char);
51
}
0 commit comments