Re: [Sikuli-driver] [Question #659217]: Click 1st item in the Menu drop down

2017-10-12 Thread TestMechanic
Question #659217 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/659217 TestMechanic posted a new comment: click("image.png") type(Key.DOWN) type(Key.ENTER) or even better if you have shortcut for the main menu - for example File menu in the notepad type("f", KeyModifier.ALT)

Re: [Sikuli-driver] [Question #659217]: Click 1st item in the Menu drop down

2017-10-11 Thread Varun Palani
Question #659217 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/659217 Status: Open => Solved Varun Palani confirmed that the question is solved: It worked just did some analysis.. used Main = Find("image.png") click("image.png") employee = menu.below(20) click(employee)

Re: [Sikuli-driver] [Question #659217]: Click 1st item in the Menu drop down

2017-10-10 Thread Varun Palani
Question #659217 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/659217 Description changed to: Hi All, I am working on application where I need to click on "Selection" menu and click on "Employee" submenu. Main = Find("image.png") click("image.png") employee =

[Sikuli-driver] [Question #659217]: Click 1st item in the Menu drop down

2017-10-10 Thread Varun Palani
New question #659217 on Sikuli: https://answers.launchpad.net/sikuli/+question/659217 Hi All, I am working on application where I need to click on "Selection" menu and click on "Employee" submenu. Main = Find("image.png") click("image.png") employee = match(menu.getX(), Menu.getY(),0,0,1)