Re: [Sikuli-driver] [Question #668045]: Reading a dynamic text relative to an image

2018-04-18 Thread RaiMan
Question #668045 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/668045 Status: Open => Answered RaiMan proposed the following answer: see feature grow() http://sikulix-2014.readthedocs.io/en/latest/region.html#extend-regions-and-create-new-regions-based-on-existing-regions

Re: [Sikuli-driver] [Question #667994]: auto update of test elements

2018-04-18 Thread Maze
Question #667994 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667994 Status: Open => Answered Maze proposed the following answer: Obviously Sikuli doesn't offer this. But how about search & replace with Notepad++ https://www.google.de/search?q=notepad%2B%2B+search+replac

Re: [Sikuli-driver] [Question #668018]: scroll down until image is seen on screen

2018-04-18 Thread Maze
Question #668018 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/668018 Maze posted a new comment: not sure if this will help you but it sounds like a similar task: https://answers.launchpad.net/sikuli/+question/235440 -- You received this question notification because your tea

Re: [Sikuli-driver] [Question #668045]: Reading a dynamic text relative to an image

2018-04-18 Thread Payam Fard
Question #668045 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/668045 Status: Answered => Open Payam Fard is still having a problem: Thanks for your response. I tried grow(), and it is better, but for some reason, it is reading a strange additional character and removing

Re: [Sikuli-driver] [Question #668045]: Reading a dynamic text relative to an image

2018-04-18 Thread RaiMan
Question #668045 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/668045 Status: Open => Answered RaiMan proposed the following answer: Might be due to the known weaknesses of the text feature. To check wether the text you want to have can be read correctly, just run this on

[Sikuli-driver] [Question #668053]: If not exists

2018-04-18 Thread arminius
New question #668053 on Sikuli: https://answers.launchpad.net/sikuli/+question/668053 if not exists(Pattern("Image A").exact()) or (Pattern("Image B").exact()): popup('THE WRONG KIND') So my program saw Image B, and then it threw up the popup. At first I was confused, but then

Re: [Sikuli-driver] [Question #668053]: If not exists

2018-04-18 Thread RaiMan
Question #668053 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/668053 Status: Open => Answered RaiMan proposed the following answer: if not (exists(Pattern("Image A").exact()) or (Pattern("Image B").exact())): popup('THE WRONG KIND') the brackets make the

[Sikuli-driver] [Question #668061]: Handle multiple windows, each as an object

2018-04-18 Thread Joe Burke
New question #668061 on Sikuli: https://answers.launchpad.net/sikuli/+question/668061 I'm using the latest Sikuli . I have a java based app that when a specific action is clicked, it will open a new child window that emulates an SSH terminal. I want to be able to do 2 things: 1. supply a fla

Re: [Sikuli-driver] [Question #235440]: Region() example help

2018-04-18 Thread Marc Summers
Question #235440 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/235440 Marc Summers posted a new comment: Well, they said it "could not be done." This is how you do it: found = 0 while(found == 0): try: for i in findAll("1524078692187.png"): hover(i)

Re: [Sikuli-driver] [Question #668018]: scroll down until image is seen on screen

2018-04-18 Thread Marc Summers
Question #668018 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/668018 Status: Open => Solved Marc Summers confirmed that the question is solved: They said it could not be done, this is how it is done: found = 0 while(found == 0): try: for i in findAll("152407

[Sikuli-driver] [Question #668063]: support for Flex version 4

2018-04-18 Thread Jonathan Dos Santos
New question #668063 on Sikuli: https://answers.launchpad.net/sikuli/+question/668063 hi, i am interesting in found one tool to test my system, i like to know if Sikuli works on Flex version 4. -- You received this question notification because your team Sikuli Drivers is an answer contact for

Re: [Sikuli-driver] [Question #667875]: Sikuli doesn't work on MacOS 10.12.6 for Sikulix 1.1.1 with Maven download

2018-04-18 Thread Ke Chen
Question #667875 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667875 Status: Answered => Open Ke Chen is still having a problem: I have installed sikulixapi-1.1.0 version sucessfully, but the image finding is still not working, I don't know why? Is any way you can help m

Re: [Sikuli-driver] [Question #667875]: Sikuli doesn't work on MacOS 10.12.6 for Sikulix 1.1.1 with Maven download

2018-04-18 Thread RaiMan
Question #667875 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/667875 Status: Open => Answered RaiMan proposed the following answer: use version 1.1.2 or even 1.1.3 nightly -- You received this question notification because your team Sikuli Drivers is an answer contact f

Re: [Sikuli-driver] [Question #668063]: support for Flex version 4

2018-04-18 Thread RaiMan
Question #668063 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/668063 Status: Open => Answered RaiMan proposed the following answer: SikuliX works completely visual: only relevant what can be seen on a screen (pixels). It does not matter, who produces the pixels. -- You

Re: [Sikuli-driver] [Question #668018]: scroll down until image is seen on screen

2018-04-18 Thread RaiMan
Question #668018 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/668018 RaiMan posted a new comment: not sure, who told you "it could not be done" Your solution is a bit overkill and if the image is not found, it will loop forever. this works in all cases and is fast. max = 10