← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #674145]: What is the correct way to click on drop-down menus that highlight?

 

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

    Status: Open => Answered

RaiMan proposed the following answer:
No need to do that:

appWindow.hover(OpenNotebook);
appWindow.click(HighlightedOpenNotebook);

Just click, where you are after the hover ;-)

so:
appWindow.hover(OpenNotebook);
appWindow.click(); # clicks the last match in region appWindow

or so:
appWindow.hover(OpenNotebook);
click(Mouse.at()) # click, where the mouse is

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