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

    Status: Open => Answered

RaiMan proposed the following answer:
type (Pattern("1544694065545.png").targetOffset(0,29), i)

the second parameter must be a string (a number in your case)

from Python to Java level there is no type check and the bytes
representing the number apparently are misinterpreted.

hence:
type (Pattern("1544694065545.png").targetOffset(0,29), str( i))

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

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to