Re: [Sikuli-driver] [Question #274127]: Not working methods of the class App - close(), focus(),

2015-11-18 Thread Eugene S
Question #274127 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274127 Eugene S proposed the following answer: You are having this problem because of how you define your firefox variable. When you write: firefox = App.open(r"C:\Program Files (x86)\Mozilla Firefox\firefox.exe")

Re: [Sikuli-driver] [Question #274127]: Not working methods of the class App - close(), focus(),

2015-11-16 Thread masuo
Question #274127 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274127 Status: Open => Answered masuo proposed the following answer: I can't run previous version of SikuliX now, but the following code works correctly on SikuliX1.1.0 . [Environment:]Windows7, SikuliX1.1.0

[Sikuli-driver] [Question #274127]: Not working methods of the class App - close(), focus(),

2015-11-13 Thread Alexandr
New question #274127 on Sikuli: https://answers.launchpad.net/sikuli/+question/274127 I have the following code taken from the documentation. firefox = App.open(r"C:\Program Files (x86)\Mozilla Firefox\firefox.exe") wait(2) #firefox.focus() wait(1) firefox.close() When I call the method of

Re: [Sikuli-driver] [Question #274127]: Not working methods of the class App - close(), focus(),

2015-11-13 Thread masuo
Question #274127 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/274127 masuo posted a new comment: I can't run previous version of SikuliX now, but the following code works correctly on SikuliX1.1.0 . [Environment:]Windows7, SikuliX1.1.0 [code:] myApp = App("firefox")