← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #632476]: Wait after click?

 

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

RaiMan posted a new comment:
LOL, thanks masuo: one should always start only thinking after having
read AND understood ;-)

... your answer should help to shed some light on what is going on.

BTW:
click("asdf2.png",10)

... the ,10 does not make sense here. the 2nd parameter can be used to specify modifier keys (like shift, ctrl, ...) to be held down during the mouse action.
The 10 here is interpreted as a binary 8 + 2, which means "press clrtl+alt" during the mouse click.
Hence it is taken as 
click("asdf2.png", KeyModifier.CTRL + KeyModifier.ALT)

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