Re: [Sikuli-driver] [Question #208824]: dispose or setvisible(false) input

2012-09-18 Thread RaiMan
Question #208824 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208824 Status: Open => Answered RaiMan proposed the following answer: This is not a feature of Sikuli nor of the underlying Java feature JoptionPane from the AWT package. In the second thread you might try to

Re: [Sikuli-driver] [Question #208869]: How to read a number from a field in desktop application?

2012-09-18 Thread RaiMan
Question #208869 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208869 Status: Open => Answered RaiMan proposed the following answer: 2 options: --1. Region.text() --2. copy-to-clipboard and Env.getClipBoard() -- option 1: (first choice) First you have to try, wether the O

Re: [Sikuli-driver] [Question #208801]: Yet another java.lang.UnsatisfiedLinkError

2012-09-18 Thread Andrew Munro
Question #208801 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208801 Status: Needs information => Open Andrew Munro gave more information on the question: Sorry, interactive drive is a network drive mapped to my computer (effectively a removable hdd / usb-stick). I had

Re: [Sikuli-driver] [Question #208801]: Yet another java.lang.UnsatisfiedLinkError

2012-09-18 Thread RaiMan
Question #208801 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208801 Status: Open => Answered RaiMan proposed the following answer: If it is not a typo, then a \ is missing here c:Program Files\Java\jre6\bin should be c:\Program Files\Java\jre6\bin and the SIKULI_HOME m

Re: [Sikuli-driver] [Question #208801]: Yet another java.lang.UnsatisfiedLinkError

2012-09-18 Thread Andrew Munro
Question #208801 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208801 Status: Answered => Open Andrew Munro is still having a problem: I removed the duplicate sikuli from my path: %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\Java\jre6\bin

Re: [Sikuli-driver] [Question #208801]: Yet another java.lang.UnsatisfiedLinkError

2012-09-18 Thread RaiMan
Question #208801 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208801 Status: Open => Needs information RaiMan requested more information: Since this now seems to be a clean setup for the drive (except that it should be SIKULI_HOME, but this should not matter): What is th

Re: [Sikuli-driver] [Question #208801]: Yet another java.lang.UnsatisfiedLinkError

2012-09-18 Thread Andrew Munro
Question #208801 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208801 Status: Needs information => Open Andrew Munro gave more information on the question: "java.lang.UnsatisfiedLinkError: java.lang.UnsatisfiedLinkError: C:\Program Files\Sikuli X\libs\Win32Util.dll: Can't

Re: [Sikuli-driver] [Question #208801]: Yet another java.lang.UnsatisfiedLinkError

2012-09-18 Thread RaiMan
Question #208801 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208801 RaiMan posted a new comment: Just looked into the sources. Since the environment variable is loaded from within Java using the string "SIKULI_HOME", I guess, the setting must be with uppercase. I will now c

[Sikuli-driver] [Question #208887]: How to capture kind of log file for sikuli scripts

2012-09-18 Thread Sathyamoorthy
New question #208887 on Sikuli: https://answers.launchpad.net/sikuli/+question/208887 Hi, I am executing sikuli script to build Windows machine. script was working. i want to capture the script execution progress .[Kind of log files]. and i need to prove the that script execution was successful

Re: [Sikuli-driver] [Question #208801]: Yet another java.lang.UnsatisfiedLinkError

2012-09-18 Thread Andrew Munro
Question #208801 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208801 Andrew Munro gave more information on the question: Sorry, I gave the wrong information. My variable is all uppercase for SIKULI_HOME, not lowercase (SIKULI_HOME = I:\QA\sikuli\Sikuli-X-1.0rc3 \Sikuli-IDE\)

Re: [Sikuli-driver] [Question #208801]: Yet another java.lang.UnsatisfiedLinkError

2012-09-18 Thread RaiMan
Question #208801 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208801 Status: Open => Answered RaiMan proposed the following answer: I tested on my Win 7 (should be no difference on Win XP with these basics) and it works as expected. for interactive Sikuli session (should

[Sikuli-driver] [Question #208900]: counting icons

2012-09-18 Thread fani
New question #208900 on Sikuli: https://answers.launchpad.net/sikuli/+question/208900 Hello, I want to count cross and checks in a screenshot like that: There is a list with a 1 in there for a cross and a 0 for a check. For example. check,cross, cross, check - Output 0 1 1 0 Can I realise it wi

[Sikuli-driver] [Question #208921]: How to send alt+printscreen command from sikuli?

2012-09-18 Thread gnimsh
New question #208921 on Sikuli: https://answers.launchpad.net/sikuli/+question/208921 I'm testing a page heavy on javascript and specifically I'm using a search box which pops up results as you type, however the moment you click on GreenShot (or anywhere else) the dropdown disappears, so I'm una

Re: [Sikuli-driver] [Question #208847]: Jenkins and Sikuli?

2012-09-18 Thread rick simpson
Question #208847 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208847 Status: Answered => Open rick simpson is still having a problem: I did the search and read through all the suggestions before posting. I've tried following the recommendations of most of them that apply

Re: [Sikuli-driver] [Question #208887]: How to capture kind of log file for sikuli scripts

2012-09-18 Thread RaiMan
Question #208887 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208887 Status: Open => Answered RaiMan proposed the following answer: You either have to use 1. Python's logging feature (see Python docs) or 2. simple print statements and redirect the stdout to a file or 3. w

Re: [Sikuli-driver] [Question #208921]: How to send alt+printscreen command from sikuli?

2012-09-18 Thread RaiMan
Question #208921 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208921 Status: Open => Answered RaiMan proposed the following answer: the notation of the keys needs an uppercase K (a class name, the docs would have told you ;-) type(Key.PRINTSCREEN, KeyModifier.ALT) or k

Re: [Sikuli-driver] [Question #208900]: counting icons

2012-09-18 Thread RaiMan
Question #208900 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208900 Status: Open => Needs information RaiMan requested more information: could you post a screenshot somewhere in the net and post the link here. -- You received this question notification because you are

Re: [Sikuli-driver] [Question #208847]: Jenkins and Sikuli?

2012-09-18 Thread RaiMan
Question #208847 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208847 RaiMan posted a new comment: --- As I stated our scripts are written in py Python in the first place is a programming language. If you use Python scripts, that want to use Sikuli features, you have to use Jy

[Sikuli-driver] [Question #208938]: How to adjust click position in image (e.g., check box)

2012-09-18 Thread Joe Chou
New question #208938 on Sikuli: https://answers.launchpad.net/sikuli/+question/208938 I have problem to adjust the click position within a extended image, a check box with its label. Be default, the click spot is in the center of the image. In this case, the click spot is the check box, which is

Re: [Sikuli-driver] [Question #208938]: How to adjust click position in image (e.g., check box)

2012-09-18 Thread RaiMan
Question #208938 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208938 Status: Open => Answered RaiMan proposed the following answer: the usage is Pattern("some_image.png").targetOffset(x,y) instead of only "some_image.png" In the IDE click on the image thumbnail and yo

Re: [Sikuli-driver] [Question #204206]: New sikuli version

2012-09-18 Thread ABET
Question #204206 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204206 ABET posted a new comment: No new version yet... :( -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli. ___

[Sikuli-driver] [Question #208949]: Expected behaviour of region after it's been changed

2012-09-18 Thread Matt DeLuco
New question #208949 on Sikuli: https://answers.launchpad.net/sikuli/+question/208949 Suppose I assign the results of Region.find() to variable x, then click() that region (in this case it's a text box), and then type() text into the box. Since the region x no longer matches (as a result of typ

Re: [Sikuli-driver] [Question #208949]: Expected behaviour of region after its visual content has been changed

2012-09-18 Thread RaiMan
Question #208949 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208949 Summary changed to: Expected behaviour of region after its visual content has been changed -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact f

Re: [Sikuli-driver] [Question #208949]: Expected behaviour of region after it's been changed

2012-09-18 Thread RaiMan
Question #208949 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208949 Status: Open => Answered RaiMan proposed the following answer: absolutely right: A Region object (however it is created) is a geometric thing, that does not change its position and dimension by itself a

Re: [Sikuli-driver] [Question #208938]: How to adjust click position in image (e.g., check box)

2012-09-18 Thread Joe Chou
Question #208938 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/208938 Status: Answered => Open Joe Chou is still having a problem: Thanks for the answer, and I'll give it a try when I have a chance. > To: joechou2...@live.com > From: question208...@answers.launchpad.net