sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #37610
Re: [Question #290565]: Mouse calls seem to cause hang
Question #290565 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/290565
Status: Open => Answered
RaiMan proposed the following answer:
// This selects one of the items in the combo box.
Mouse.move(0, 50);
Mouse.down(Button.LEFT);
Mouse.up();
... seems you have touched an area, that was not tested thoroughly
enough ;-)
Try this instead
// This selects one of the items in the combo box.
tmp.click(Mouse.at().offset(0, 50))
... which is equivalent to the above sequence
--
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.