sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #37420
Re: [Question #289462]: how to combine the keys shift and end?
Question #289462 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/289462
RaiMan posted a new comment:
# wrong type("a", Key.CTRL+Key.DELETE) #ctrl-a
# right
type("a", Key.CTRL)
type(Key.DELETE)
in your solution the +Key.DELETE is simply ignored.
But it works, because the paste overwrites the selection done by ctrl-a
so finally this would be sufficient:
type("a", Key.CTRL)
paste("Example")
--
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.