← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #651162]: Is there a way to limit the speed of keystrokes performed when the type() statement is used

 

Question #651162 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/651162

Roman Podolyan posted a new comment:
I'd go for putting "type" inside loop with

letters = list(data)
for i in range(0, len(data)-1):
    type(letters[i])
    wait(1)

In case one needs more precise waiting than 1 second,  Python time.sleep
function may be of help (http://pythoncentral.io/pythons-time-sleep-
pause-wait-sleep-stop-your-code/ ).

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.