Re: [Sikuli-driver] [Question #688756]: App.open() and subprocess.Popen don't open a jar file on Mac OS (Sikuli version 2.0.0)

2020-02-14 Thread Aleks Kozaev
Question #688756 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/688756 Aleks Kozaev confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli

Re: [Sikuli-driver] [Question #688756]: App.open() and subprocess.Popen don't open a jar file on Mac OS (Sikuli version 2.0.0)

2020-02-14 Thread Aleks Kozaev
Question #688756 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/688756 Status: Answered => Solved Aleks Kozaev confirmed that the question is solved: Thank you for quick replies. This worked for me too. Seems that I typed the path wrong, hence nothing happened at fi

Re: [Sikuli-driver] [Question #688756]: App.open() and subprocess.Popen don't open a jar file on Mac OS (Sikuli version 2.0.0)

2020-02-14 Thread Aleks Kozaev
Question #688756 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/688756 Status: Needs information => Open Aleks Kozaev gave more information on the question: Yes, this works from commandline (both on windows and mac) -- You received this question notification because y

[Sikuli-driver] [Question #688756]: App.open() and subprocess.Popen don't open a jar file on Mac OS (Sikuli version 2.0.0)

2020-02-13 Thread Aleks Kozaev
New question #688756 on Sikuli: https://answers.launchpad.net/sikuli/+question/688756 Hello! I am trying to open a jar on Mac OS (Sikuli IDE version 2.0.0). I have tried 4 methods. 1) App.open(path_to_jar) 2) App(path_to_jar).open() 3) subprocess.Popen("java -jar "+path_to_jar) 4) subprocess.Po

[Sikuli-driver] [Bug 1717461] Re: [1.1.1] subprocess.Popen does not seem to work on macOS 10.12+ --- fixed 1.1.2 2017-09-15

2020-02-13 Thread Aleks Kozaev
Hello, RaiMan! Could you elaborate on this. I am currently using Sikuli version 2.0.0 and the same thing happens to me. As I understood I should just add "import subprocess" to the Sikuli.py? But this didn't do anything. -- You received this bug notification because you are a member of Sikuli D

Re: [Sikuli-driver] [Question #688075]: ImagePath: find: not there when importing unittest TestCase into main script

2020-01-18 Thread Aleks Kozaev
Question #688075 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/688075 Aleks Kozaev gave more information on the question: Update: Tried to copy "image.png" to main.sikuli. Now it works. Encountered this problem only when using unittest classes. Regular sikuli clas

[Sikuli-driver] [Question #688075]: ImagePath: find: not there when importing unittest TestCase into main script

2020-01-17 Thread Aleks Kozaev
New question #688075 on Sikuli: https://answers.launchpad.net/sikuli/+question/688075 I have a name.sikuli script which is as follows: class TestA(unittest.TestCase): def testA(self): click("image.png") self.assertTrue(1 == 1) When i run it with if __name__ == '__main__':