[Sikuli-driver] [Question #236945]: How to terminate a unittest on failure and move to following unittests

2013-10-07 Thread Aravind
New question #236945 on Sikuli: https://answers.launchpad.net/sikuli/+question/236945 Hi, I am running two scripts parallelly on two different machines(as two different user logins into a Desktop app). My test suite contains three unittests say, test1, test2 and test3. I'll make it much more

Re: [Sikuli-driver] [Question #236802]: How to select an one of the option from dropdown list?

2013-10-07 Thread koventhan
Question #236802 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236802 Status: Answered = Open koventhan is still having a problem: Yes i have added some wait and sleep between each stpes and now its working fine. I have one more doubt, I want to take one of the string

Re: [Sikuli-driver] [Question #236945]: How to terminate a unittest on failure and move to following unittests

2013-10-07 Thread RaiMan
Question #236945 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236945 Status: Open = Answered RaiMan proposed the following answer: If you want a 2-way communication between the 2 machines, you need to start an XML-RPC server on both machines. The handlers should be the

Re: [Sikuli-driver] [Question #236802]: How to select an one of the option from dropdown list?

2013-10-07 Thread RaiMan
Question #236802 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236802 Status: Open = Answered RaiMan proposed the following answer: Why using the stony visual way? Just read and write the files directly. -- You received this question notification because you are a

Re: [Sikuli-driver] [Question #236943]: Sikuli error with build.gradle

2013-10-07 Thread RaiMan
Question #236943 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236943 Status: Open = Answered RaiMan proposed the following answer: How do you add other dependencies to build.gradle? Should be the same with sikuli-java.jar. -- You received this question notification

Re: [Sikuli-driver] [Question #236802]: How to select an one of the option from dropdown list?

2013-10-07 Thread akbar
Question #236802 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236802 akbar posted a new comment: Yes lot of programming languages give powerful file operation capabilities. Also can you mark the query as solved as your original problem is solved? -- You received this

Re: [Sikuli-driver] [Question #236003]: i am not able to display the region after find failed

2013-10-07 Thread RaiMan
Question #236003 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236003 Status: Open = Answered RaiMan proposed the following answer: There are some non-Sikuli functions, that might produce errors. On the other hand: this is far too complicated: img = targetimage.png pat

Re: [Sikuli-driver] [Question #236802]: How to select an one of the option from dropdown list?

2013-10-07 Thread koventhan
Question #236802 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236802 Status: Answered = Solved koventhan confirmed that the question is solved: Yes i will close original issue now Thanks a lot :) :) -- You received this question notification because you are a

[Sikuli-driver] [Bug 1234831] Re: IDE 1.0.1 hangs launching -d 3 -c on OS X

2013-10-07 Thread RaiMan
Yep, it does not make sense, to be able to add -c into the IDE's startup dialog, since you do not have a stdout like when running in a terminal session. Using option -d in this case will redirect all output produced by the logging feature to a file as said. Normal user generated output (e.g.

Re: [Sikuli-driver] [Question #236943]: Sikuli error with build.gradle

2013-10-07 Thread chandan
Question #236943 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236943 Status: Answered = Open chandan is still having a problem: first is that i should add sikuli-script or sikuli-java.jar? then question is that how should i add these -- You received this question

[Sikuli-driver] [Bug 1235211] Re: Sikuli doesn't open saved files

2013-10-07 Thread RaiMan
I cannot reproduce this with the latest build of Sikuli 1.0.1 Empty your setup folder, download sikuli-setup.jar and run setup again,to get the latest builds. ** Changed in: sikuli Status: New = Opinion ** Summary changed: - Sikuli doesn't open saved files + [1.0.1] IDE: Windows:

[Sikuli-driver] [Question #236949]: How to compare the string from two different text file?

2013-10-07 Thread koventhan
New question #236949 on Sikuli: https://answers.launchpad.net/sikuli/+question/236949 I want to take one of the string from x file and other string from y file and compare both the strings. Example : File x - student_list.txt 1. Student Name - Kumar 2. Student ID- 12345 3. Student

Re: [Sikuli-driver] [Question #236943]: Sikuli error with build.gradle

2013-10-07 Thread chandan
Question #236943 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236943 chandan posted a new comment: i have tried following compile org.sikuli:sikuli-api:1.0+ compile org.sikuli:sikuli-java:1.0.1 compile org.sikuli:sikuli-core:1.1.4 compile

Re: [Sikuli-driver] [Question #236943]: Sikuli error with build.gradle

2013-10-07 Thread RaiMan
Question #236943 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236943 Status: Open = Answered RaiMan proposed the following answer: nothing to compile for Sikuli. sikuli-java.jar is ready to be used. You have to put sikuli-java.jar on the class path for the compile step

Re: [Sikuli-driver] [Question #236949]: How to compare the string from two different text file?

2013-10-07 Thread RaiMan
Question #236949 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236949 Status: Open = Answered RaiMan proposed the following answer: lines1 = open(file1).readlines() lines2 = open(file2).readlines() shouldFail = false for i in range(length(lines1)): if not lines1[i]

Re: [Sikuli-driver] [Question #236943]: Sikuli error with build.gradle

2013-10-07 Thread chandan
Question #236943 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236943 chandan posted a new comment: @raiman putting sikuli-java.jar in classpath means i need to have this in project itself, which is not recomenended to us. I need to get this from maven repo. . Putting the

Re: [Sikuli-driver] [Question #236943]: Sikuli error with build.gradle

2013-10-07 Thread RaiMan
Question #236943 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236943 RaiMan proposed the following answer: ok, understood. Cant you transfer it to your local Maven repo using a minimum pom.xml? ?xml version=1.0? project xmlns=http://maven.apache.org/POM/4.0.0;

Re: [Sikuli-driver] [Question #236945]: How to terminate a unittest on failure and move to following unittests

2013-10-07 Thread Aravind
Question #236945 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236945 Status: Answered = Open Aravind is still having a problem: Thanks Raiman, but I didn't quite get the idea of using thread here. Can you please give an idea on how we can use threads here. I'm not that

Re: [Sikuli-driver] [Question #236945]: How to terminate a unittest on failure and move to following unittests

2013-10-07 Thread RaiMan
Question #236945 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236945 Status: Open = Answered RaiMan proposed the following answer: if you want to skip something depending on a switch, you have to possibilities: --- version 1 (using if/while/ ...) # some preps here #

Re: [Sikuli-driver] [Question #236846]: Sikuli and Java: Can't load IA 32-bit .dll on a AMD 64-bit platform

2013-10-07 Thread Krzysztof Gonia
Question #236846 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236846 Status: Answered = Open Krzysztof Gonia is still having a problem: I have 1.0.1 version -- You received this question notification because you are a member of Sikuli Drivers, which is an answer

Re: [Sikuli-driver] [Question #236943]: Sikuli error with build.gradle

2013-10-07 Thread chandan
Question #236943 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236943 Status: Answered = Open chandan is still having a problem: RaiMan (raimund-hocke) Thanks for your help. but i need this in build.gradle version to which i am new. can you please convert this in

Re: [Sikuli-driver] [Question #236846]: Sikuli and Java: Can't load IA 32-bit .dll on a AMD 64-bit platform

2013-10-07 Thread Krzysztof Gonia
Question #236846 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236846 Status: Open = Solved Krzysztof Gonia confirmed that the question is solved: My bad, it was SikuliX-1.0rc3 -- You received this question notification because you are a member of Sikuli Drivers, which

[Sikuli-driver] [Question #236962]: Can't install Sikuli 1.0.1 on Windows

2013-10-07 Thread Krzysztof Gonia
New question #236962 on Sikuli: https://answers.launchpad.net/sikuli/+question/236962 I downloaded last version of Sikuli, run sikuli-setup, then runSetup but nothing happen. Earlier I had 1.0rc3 version but I deinstall it becouse problem on x64 system. How to install 1.0.1 version? -- You

Re: [Sikuli-driver] [Question #236962]: Can't install Sikuli 1.0.1 on Windows

2013-10-07 Thread RaiMan
Question #236962 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236962 Status: Open = Needs information RaiMan requested more information: content of setup logfile? -- You received this question notification because you are a member of Sikuli Drivers, which is an answer

Re: [Sikuli-driver] [Question #236943]: Sikuli error with build.gradle

2013-10-07 Thread RaiMan
Question #236943 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236943 Status: Open = Answered RaiMan proposed the following answer: Sorry, but it is beyond the scope of this board, to compensate your lack of knowledge with a tool you decided to use. When you are using

Re: [Sikuli-driver] [Question #236962]: Can't install Sikuli 1.0.1 on Windows

2013-10-07 Thread Krzysztof Gonia
Question #236962 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236962 Krzysztof Gonia posted a new comment: Logfile: [debug (07.10.13 13:39:29)] RunSetup: SikuliX Setup Build: 1.0.1 2SEP2013172831 [debug (07.10.13 13:39:29)] RunSetup: ... starting with no args given [debug

Re: [Sikuli-driver] [Question #236962]: Can't install Sikuli 1.0.1 on Windows

2013-10-07 Thread RaiMan
Question #236962 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236962 Status: Needs information = Answered RaiMan proposed the following answer: -- 1. you should name your SikuliX installation folder something like D:\SikuliX -- 2. put into this folder sikuli-setup.jar

Re: [Sikuli-driver] [Question #236003]: i am not able to display the region after find failed

2013-10-07 Thread azhar
Question #236003 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236003 Status: Answered = Open azhar is still having a problem: I didn't get you. which are the non-sikuli functions ? -- You received this question notification because you are a member of Sikuli Drivers,

[Sikuli-driver] [Question #236965]: Getting null pointer exception if i use muliple ScreenRegion in one test method

2013-10-07 Thread Gnanadeep
New question #236965 on Sikuli: https://answers.launchpad.net/sikuli/+question/236965 Hi, I am writing a sample test method for 7-zip software to zip a folder. When i exexute the method i am getting NullPointerException. How to use 2 ScreenRegions in one test method. Please help me. Below is

Re: [Sikuli-driver] [Question #236003]: i am not able to display the region after find failed

2013-10-07 Thread RaiMan
Question #236003 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236003 Status: Open = Answered RaiMan proposed the following answer: getFilename(target) screenshot(... and not clear, what this is: SikuliRegion.click(s... -- You received this question notification

Re: [Sikuli-driver] [Question #236965]: [Sikuli Java API] Getting null pointer exception if i use muliple ScreenRegion in one test method

2013-10-07 Thread RaiMan
Question #236965 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236965 Summary changed to: [Sikuli Java API] Getting null pointer exception if i use muliple ScreenRegion in one test method -- You received this question notification because you are a member of Sikuli Drivers,

Re: [Sikuli-driver] [Question #236965]: [Sikuli Java API] Getting null pointer exception if i use muliple ScreenRegion in one test method

2013-10-07 Thread RaiMan
Question #236965 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236965 Status: Open = Answered RaiMan proposed the following answer: *** recommendation for issues with Sikuli Java API: pls. post on http://code.google.com/p/sikuli-api/issues/list which is the direct access

Re: [Sikuli-driver] [Question #236725]: Why does onChange() work with a sikuli.Region and not with a org.sikuli.script.Region

2013-10-07 Thread Pierre Best
Question #236725 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236725 Status: Answered = Solved Pierre Best confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because you are a member of Sikuli

[Sikuli-driver] [Question #236971]: Importing Excell text every minute

2013-10-07 Thread Paolo Carbone
New question #236971 on Sikuli: https://answers.launchpad.net/sikuli/+question/236971 Hello, I came across this group from doing some research the last few days. I do some stock trading and use a Scottrade platform (which is a java based application). I also use MS Excel to generate a list of

[Sikuli-driver] [Question #236975]: [1.0.1] cant open ide after script name change

2013-10-07 Thread rob
New question #236975 on Sikuli: https://answers.launchpad.net/sikuli/+question/236975 i changed the names of several .sikuli folders and the .py files inside them from windows explorer. some of the scripts were open in the ide when i made the changes, so i closed the ide and now i cant reopen

Re: [Sikuli-driver] [Question #236975]: [1.0.1] cant open ide after script name change

2013-10-07 Thread rob
Question #236975 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236975 rob gave more information on the question: also, i can still run an interactive session using runIDE -i -- You received this question notification because you are a member of Sikuli Drivers, which is an

[Sikuli-driver] [Question #236976]: Can't execute without slow motion mode

2013-10-07 Thread Benjamin Skyly
New question #236976 on Sikuli: https://answers.launchpad.net/sikuli/+question/236976 Hello ! First of all, i can't access the tools menu. Is it because there are no tools, or is it a bug ? The main plot here is that i can't exec a sikuli script without slow motion ! It always show the little

Re: [Sikuli-driver] [Question #236976]: Can't execute without slow motion mode

2013-10-07 Thread Benjamin Skyly
Question #236976 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236976 Benjamin Skyly gave more information on the question: Problem solved !... or not. Sikuli X works perfect, but v1.0.1 doesn't work for me. Any idea why ? -- You received this question notification because

Re: [Sikuli-driver] [Question #236975]: [1.0.1] cant open ide after script name change

2013-10-07 Thread rob
Question #236975 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236975 Status: Open = Solved rob confirmed that the question is solved: nevermind. i deleted some registry entries and got it back up again. HKEY_CURRENT_USER\Software\JavaSoft\Prefs\org\sikuli\ide\

[Sikuli-driver] [Bug 1236688] [NEW] keyDown(Key.SHIFT+Key.END) does not work

2013-10-07 Thread vince
Public bug reported: sikuli ide 1.0.1 + windows7 32bit I try to select some texts using keyDown(Key.SHIFT+Key.END),but it does not work. BTW,what is the best way to clear all the uncertain contents in a text box? ** Affects: sikuli Importance: Undecided Status: New -- You

Re: [Sikuli-driver] [Question #236003]: i am not able to display the region after find failed

2013-10-07 Thread azhar
Question #236003 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236003 Status: Answered = Open azhar is still having a problem: I wrote all of them as in the link and added my changes to them

[Sikuli-driver] [Question #237000]: Sikuli IDE - pause script by hotkey

2013-10-07 Thread SiuLung
New question #237000 on Sikuli: https://answers.launchpad.net/sikuli/+question/237000 Hi I have made my script running from Sikuli IDE, however from time to time i like to pause the script if i need to use the computer to something else then resume afterwards. There are hotkeys from the IDE