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

2023-11-29 Thread Oliver Bennett
Question #674145 on SikuliX changed: https://answers.launchpad.net/sikuli/+question/674145 Oliver Bennett posted a new comment: I'm getting a FindFailed whilst waiting on NotebookOpenDialog because the conversation is never beginning. I'm watching the app. I can see that when "[log] Clicked

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

2018-09-21 Thread RaiMan
Question #674145 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674145 Status: Answered => Solved RaiMan changed the question status: Glad, that you found a solution. -- You received this question notification because your team Sikuli Drivers is an answer contact for

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

2018-09-21 Thread Paul Chambre
Question #674145 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674145 Paul Chambre posted a new comment: This is not the first click event in the application. It first clicks to connect, and then, once connected, it's going to the menu... nothing has occurred outside that

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

2018-09-21 Thread RaiMan
Question #674145 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674145 Status: Open => Answered RaiMan proposed the following answer: Uuups, just went back in your answers and found, that you are on macOS --- sorry. On Mac we have the bad situation, that a click on an

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

2018-09-21 Thread Paul Chambre
Question #674145 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674145 Status: Answered => Open Paul Chambre is still having a problem: I'm getting a FindFailed while waiting on NotebookOpenDialog because the dialog is never opening. I'm watching the app. I can see that

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

2018-09-21 Thread RaiMan
Question #674145 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674145 Status: Open => Answered RaiMan proposed the following answer: Initially you complained about some menu item that changes on hover. So the problematic area seems to be here (which is what the log

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

2018-09-21 Thread Paul Chambre
Question #674145 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674145 Status: Answered => Open Paul Chambre is still having a problem: Hi, Your suggestion was: "Just click, where you are after the hover ;-) so: appWindow.hover(OpenNotebook); appWindow.click(); # clicks

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

2018-09-19 Thread Paul Chambre
Question #674145 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674145 Paul Chambre gave more information on the question: With this code: appWindow.hover(OpenNotebook); appWindow.click(); Debug.action("Clicked OpenNotebook."); try { appWindow.wait(NotebookOpenDialog, 2);

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

2018-09-19 Thread Paul Chambre
Question #674145 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674145 Status: Answered => Open Paul Chambre is still having a problem: Just tried it. It did not work. The mouse moved to the menu item, but the application did not respond to the click. -- You received

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

2018-09-19 Thread Paul Chambre
Question #674145 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/674145 Paul Chambre posted a new comment: I've tried a number of variants. Pretty sure that's one of them. I'll try it again, though, to be sure. -- You received this question notification because your team

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

2018-09-19 Thread RaiMan
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