sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #49732
Re: [Question #676784]: Automatic press enter after type text
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.