Sikuli speed

Asked by Hasham

Is it possible to control the speed with which Sikuli types characters? Like Settings.minSimilarity etc

Question information

Language:
English Edit question
Status:
Solved
For:
SikuliX Edit question
Assignee:
No assignee Edit question
Solved by:
RaiMan
Solved:
Last query:
Last reply:
Revision history for this message
Alex N (alexnolasco) said :
#1
Revision history for this message
Best RaiMan (raimund-hocke) said :
#2

faster: currently no (see above comment)

slower:
def myType(text, pause = 0.1):
    for c in text:
          type(c)
          wait(pause)

Revision history for this message
Hasham (shaikhasham) said :
#3

Thanks RaiMan, that solved my question.

Revision history for this message
Hasham (shaikhasham) said :
#4

Thanks Raiman, this did the trick...............