Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-21 Thread RaiMan
Question #666773 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666773 RaiMan posted a new comment: --- Why could it return null? It will always find a number there. yes ... findAnyList() will always return a List object, ... but in your case all match entries in the list for th

Re: [Sikuli-driver] [Question #665698]: How to use type function to input combined keys of HOME and SHIFT ?

2018-03-21 Thread RaiMan
Question #665698 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/665698 Status: Open => Answered RaiMan proposed the following answer: ok, thank you. I have to check the situation on Windows 7. -- You received this question notification because your team Sikuli Drivers is

Re: [Sikuli-driver] [Question #665698]: How to use type function to input combined keys of HOME and SHIFT ?

2018-03-21 Thread RaiMan
Question #665698 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/665698 Linked to bug: #1757365 https://bugs.launchpad.net/bugs/1757365 "[1.1.x] Windows 7: Env.isLockOn(Key.NUM_LOCK) does not work" -- You received this question notification because your team Sikuli

[Sikuli-driver] [Question #665698]: Status of bug #1757365 changed to 'In Progress' in Sikuli

2018-03-21 Thread RaiMan
Bug #1757365 status changed in Sikuli: New => In Progress https://bugs.launchpad.net/sikuli/+bug/1757365 "[1.1.x] Windows 7: Env.isLockOn(Key.NUM_LOCK) does not work" This bug is linked to #665698. How to use type function to input combined keys of HOME and SHIFT ? https://answers.launchpad.

Re: [Sikuli-driver] [Question #666873]: Is there sample codes using JavaScript in SikuliX IDE.

2018-03-21 Thread RaiMan
Question #666873 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666873 Status: Open => Answered RaiMan proposed the following answer: Sorry, but just found, that the JavaScript support does not work. -- You received this question notification because your team Sikuli Driv

[Sikuli-driver] [Question #666873]: Status of bug #1757368 changed to 'In Progress' in Sikuli

2018-03-21 Thread RaiMan
Bug #1757368 status changed in Sikuli: New => In Progress https://bugs.launchpad.net/sikuli/+bug/1757368 "[1.1.2] JavaScript support not working" This bug is linked to #666873. Is there sample codes using JavaScript in SikuliX IDE. https://answers.launchpad.net/sikuli/+question/666873 -- Y

Re: [Sikuli-driver] [Question #666873]: Is there sample codes using JavaScript in SikuliX IDE.

2018-03-21 Thread RaiMan
Question #666873 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666873 Linked to bug: #1757368 https://bugs.launchpad.net/bugs/1757368 "[1.1.2] JavaScript support not working" -- You received this question notification because your team Sikuli Drivers is an answer

Re: [Sikuli-driver] [Question #666873]: Is there sample codes using JavaScript in SikuliX IDE.

2018-03-21 Thread RaiMan
Question #666873 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666873 Status: Answered => Solved RaiMan changed the question status: making it a bug -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli.

[Sikuli-driver] [Bug 1757365] [NEW] [1.1.x] Windows 7: Env.isLockOn(Key.NUM_LOCK) does not work

2018-03-21 Thread RaiMan
Public bug reported: problem if Env.isLockOn(Key.NUM_LOCK): nlZap=True else: nlZap=False if nlZap: type(Key.NUM_LOCK) I want to select one line text in script by combined keys of HOME and SHIFT, but it dosen't work. My script is : type(Key.END) wa

[Sikuli-driver] [Bug 1757368] [NEW] [1.1.2] JavaScript support not working

2018-03-21 Thread RaiMan
Public bug reported: Is there sample codes using JavaScript in SikuliX IDE. I am interested in the explanation here. There is some special support for using SikuliX features from JavaScript which is still experimental and not yet documented. ** Affects: sikuli Importance: High Assignee

Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-21 Thread Alexander Schone
Question #666773 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666773 Alexander Schone posted a new comment: I'll think about visiting the javadoc next time! I see so in my case I dont really need to use findAnyList correct? since I have the images as files already I dont nee

Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-21 Thread RaiMan
Question #666773 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666773 RaiMan posted a new comment: the exists example should break when number is found: found = False foundNumber = -1 for number in numbers: foundNumber += 1 if not reg.exists(number, 0): contin

Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-21 Thread RaiMan
Question #666773 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666773 RaiMan posted a new comment: --- findBestList() vs. findAnyList() yep, in your case findBestList() is the preferable feature --- just made a test with 10 images in a 500 pixel region: - exists loop: 90 msec

[Sikuli-driver] [Question #667010]: Image FindFailed on different MacBook-Pros even though the screen resolutions are the same

2018-03-21 Thread Lee Yen Liang
New question #667010 on Sikuli: https://answers.launchpad.net/sikuli/+question/667010 I have two MacBook-Pros. Both machines' resolutions are 2560 x 1600. Each machine runs sikuli to do some tasks on an Android emulator(Nox App Player) whose resolution is set to 720 x 1280. I just captured an

Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-21 Thread Alexander Schone
Question #666773 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666773 Alexander Schone posted a new comment: why do I need findBestList instead of findBest? Im not fully getting the difference even though I looked up both functions in the docs. -- You received this question n

Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-21 Thread RaiMan
Question #666773 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666773 RaiMan posted a new comment: --- why do I need findBestList instead of findBest? same answer as this: --- difference between findAny and findAnyList findAny accepts a parameter series of images, whereas find

Re: [Sikuli-driver] [Question #667010]: Image FindFailed on different MacBook-Pros even though the screen resolutions are the same

2018-03-21 Thread RaiMan
Question #667010 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667010 Status: Open => Answered RaiMan proposed the following answer: I guess the problem is with the Android emulator, which produces differences on the both Macs. To verify, make a screenshots on both machin

Re: [Sikuli-driver] [Question #667010]: Image FindFailed on different MacBook-Pros even though the screen resolutions are the same

2018-03-21 Thread Lee Yen Liang
Question #667010 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667010 Lee Yen Liang posted a new comment: `Pattern("icon.png").similar(0.5)` lowers the matching criteria. -- You received this question notification because your team Sikuli Drivers is an answer contact for Sik

Re: [Sikuli-driver] [Question #667010]: Image FindFailed on different MacBook-Pros even though the screen resolutions are the same

2018-03-21 Thread Lee Yen Liang
Question #667010 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667010 Lee Yen Liang posted a new comment: I can't see much difference between the images captured on different MacBook-Pros. I discovered that the new MacBook-Pro is able to find the image using `Pattern("icon.png

Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-21 Thread Alexander Schone
Question #666773 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666773 Alexander Schone posted a new comment: Yes, that is what I meant, I only need the "List" function when I expect the images(objects) to be created in the process of execution, but since I have all pictures alr

Re: [Sikuli-driver] [Question #666773]: How to get on the road as a newcomer to Java programming

2018-03-21 Thread RaiMan
Question #666773 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/666773 RaiMan posted a new comment: always welcome - have fun with SikuliX -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli.

Re: [Sikuli-driver] [Question #667010]: Image FindFailed on different MacBook-Pros even though the screen resolutions are the same

2018-03-21 Thread RaiMan
Question #667010 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667010 RaiMan proposed the following answer: situations like that usually come from that the image has too much background towards the edges of the image and the background in another environment is slightly differe

[Sikuli-driver] [Question #667037]: Building a custom Sikuli/Eclipse IDE

2018-03-21 Thread joe maniaci
New question #667037 on Sikuli: https://answers.launchpad.net/sikuli/+question/667037 So for the last year I have gone down the path of researching various automated GUI test tools. One of the more promising ones was Testplant's Eggplant Functional tool. However, the price is just way too much f

Re: [Sikuli-driver] [Question #667037]: Building a custom Sikuli/Eclipse IDE

2018-03-21 Thread joe maniaci
Question #667037 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667037 Description changed to: So for the last year I have gone down the path of researching various automated GUI test tools. One of the more promising ones was Testplant's Eggplant Functional tool. However, the pr

Re: [Sikuli-driver] [Question #665696]: Can we integrate selenium in Sikuli IDE?

2018-03-21 Thread Hina
Question #665696 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/665696 Status: Answered => Open Hina is still having a problem: When I click on Tools--> Extensions it shows me a message Not available yet - click what ypu like ;-) OK Be quiet! Cancel :( no idea why did I

Re: [Sikuli-driver] [Question #665696]: Can we integrate selenium in Sikuli IDE?

2018-03-21 Thread Hina
Question #665696 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/665696 Hina gave more information on the question: The solution in recommended case works fine till load command. But when we try to write code it won't work. May be cuz I'm using Sikuli with python. How can we