sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #42422
[Question #631617]: CTRL-ALT-DEL for VNCRobot
New question #631617 on Sikuli:
https://answers.launchpad.net/sikuli/+question/631617
For unlocking desktop via VNCRobot, the following code does not work.
screen.keyDown(Key.CTRL);
screen.keyDown(Key.ALT);
screen.keyDown(Key.DELETE);
screen.keyUp(Key.DELETE);
screen.keyUp(Key.ALT);
screen.keyUp(Key.CTRL);
However, on inspection, it was revealed that for "DEL", 65535 needs to be sent to the VNC server. VNC Robot is sending 65439 instead, which is correctly mapped to 127(DEL).
Does CTRL-ALT-DEL need special handling in VNC robot?
--
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.