Added pause after setting complex input to avoid race conditions

This commit is contained in:
n1474335 2024-04-25 18:10:59 +01:00
parent f0a49fefa4
commit bbebba6481
No known key found for this signature in database
GPG Key ID: D15457B7B4AF3F37
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ function setInput(browser, input, type=true) {
browser.execute(text => {
window.app.setInput(text);
}, [input]);
browser.pause(100);
}
}