Re: [Sikuli-driver] [Question #204805]: beginner how can i say sikuli to go back to lne 1 ?

2012-08-02 Thread RaiMan
Question #204805 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204805 Status: Open = Answered RaiMan proposed the following answer: You either rap the whole stuff into another loop while True: #endless hanf = exists(...) while hanf: or you redesign your existing

Re: [Sikuli-driver] [Question #204776]: Localization testing

2012-08-02 Thread RaiMan
Question #204776 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204776 RaiMan posted a new comment: More suggestions: You should generally restrict the searches at least to your app's window (see App class). And whenever possible restrict the search area as much as possible.

Re: [Sikuli-driver] [Question #204776]: Localization testing

2012-08-02 Thread RaiMan
Question #204776 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204776 Status: Open = Answered RaiMan proposed the following answer: --- import if the main script and the imported scripts are in the same folder, the import works without the need to manipulate sys.path

Re: [Sikuli-driver] [Question #204776]: Localization testing

2012-08-02 Thread Neo
Question #204776 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204776 Status: Answered = Solved Neo confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because you are a member of Sikuli Drivers,

Re: [Sikuli-driver] [Question #139304]: Unsatisfied dependency reported by libVisionProxy.so on Ubuntu 10.04

2012-08-02 Thread CoreView
Question #139304 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/139304 CoreView posted a new comment: Hi, I am trying to use Sikuli for Fedora 16.I'm new to Sikuli and tried to install all prerequisites for Sikuli on Linux.Still the Sikuli script doesn't work. Is there some

Re: [Sikuli-driver] [Question #139304]: Unsatisfied dependency reported by libVisionProxy.so on Ubuntu 10.04

2012-08-02 Thread RaiMan
Question #139304 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/139304 RaiMan posted a new comment: @CoreView pls. post your own question. Have you installed OpenCV 2.1 ??? Because this is what is missing. -- You received this question notification because you are a member

Re: [Sikuli-driver] [Question #204805]: beginner how can i say sikuli to go back to lne 1 ?

2012-08-02 Thread elias maure
Question #204805 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204805 Status: Answered = Solved elias maure confirmed that the question is solved: Oh thanks a lot man :D -- You received this question notification because you are a member of Sikuli Drivers, which is an

[Sikuli-driver] [Question #204826]: Possible to do exists with a list of items?

2012-08-02 Thread Andrew Munro
New question #204826 on Sikuli: https://answers.launchpad.net/sikuli/+question/204826 I have an issue where there is a choice of different objects that can come up on the screen. Sikuli needs to check if any of them come up, and click on them. At the moment I am doing an if statement to check

[Sikuli-driver] [Question #204827]: Logging message data from sikuli to a file

2012-08-02 Thread vidya rajagopal
New question #204827 on Sikuli: https://answers.launchpad.net/sikuli/+question/204827 Hi , I want to know how to copy the Message tab and Test Trace data in sikuli into a file . Also want to know when Test Trace tab gets data and how to use it Thanks -- You received this question

Re: [Sikuli-driver] [Question #204826]: Possible to do exists with a list of items?

2012-08-02 Thread RaiMan
Question #204826 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204826 Status: Open = Answered RaiMan proposed the following answer: Currently, there is not Sikuli feature to accomplish that. So make your own def: def clickFromList(images, reg = SCREEN): for img in

Re: [Sikuli-driver] [Question #204827]: Logging message data from sikuli to a file

2012-08-02 Thread RaiMan
Question #204827 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204827 Status: Open = Answered RaiMan proposed the following answer: You have to run the script from command line and pipe the output to a file. ... and forget about IDE Unit Test: see faq 1804 -- You

Re: [Sikuli-driver] [Question #204826]: Possible to do exists with a list of items?

2012-08-02 Thread Andrew Munro
Question #204826 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204826 Andrew Munro confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact

Re: [Sikuli-driver] [Question #204826]: Possible to do exists with a list of items?

2012-08-02 Thread Andrew Munro
Question #204826 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204826 Status: Answered = Solved Andrew Munro confirmed that the question is solved: Thanks RaiMan. I will try some experimentation with threading and report back if I find a better solution. As we are

Re: [Sikuli-driver] [Question #204827]: Logging message data from sikuli to a file

2012-08-02 Thread vidya rajagopal
Question #204827 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204827 Status: Answered = Open vidya rajagopal is still having a problem: Thanks for the information . Is it possible to capture the images on the Sikuli . Example click on Edit button of sikuli during

Re: [Sikuli-driver] [Question #204827]: Logging message data from sikuli to a file

2012-08-02 Thread RaiMan
Question #204827 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204827 Status: Open = Needs information RaiMan requested more information: No, because the IDE window is switched to not visible during run. What do you want to accomplish? -- You received this question

Re: [Sikuli-driver] [Question #139304]: Unsatisfied dependency reported by libVisionProxy.so on Ubuntu 10.04

2012-08-02 Thread CoreView
Question #139304 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/139304 CoreView posted a new comment: Yes installed Open CV 2.1 and wmctrl_1.07-6_i386.deb (after converting .deb to .tgz). The problem is that -none of the script run. I want to run a script where I first open

Re: [Sikuli-driver] [Question #204827]: Logging message data from sikuli to a file

2012-08-02 Thread vidya rajagopal
Question #204827 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204827 vidya rajagopal posted a new comment: Ok . I was thinking if we can get the sikuli window control during execution , we could have copied the content of Message Tab and pasted into a note pad using click

Re: [Sikuli-driver] [Question #204827]: Logging message data from sikuli to a file

2012-08-02 Thread RaiMan
Question #204827 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204827 Status: Needs information = Answered RaiMan proposed the following answer: Uuups, what a mighty effort ;-) What about my suggestion comment #1 ? This is still state of the art ;-) -- You received

Re: [Sikuli-driver] [Question #139304]: Unsatisfied dependency reported by libVisionProxy.so on Ubuntu 10.04

2012-08-02 Thread RaiMan
Question #139304 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/139304 RaiMan posted a new comment: --1. to make debugging easier: move the folder Sikuli-IDE to the Downloads folder So you can get rid of Sikuli/Sikuli-X-1.0rc3 (r905)-linux-i686 --2. make following test from a

[Sikuli-driver] [Question #204840]: sleep(2940) kills test

2012-08-02 Thread Felix
New question #204840 on Sikuli: https://answers.launchpad.net/sikuli/+question/204840 Hi there, I'm experiencing an issue with one of my tests. It tests the playback of several youtube videos (up to 1hour each). code: wait(Pattern(Youtube1.png).similar(0.80))

Re: [Sikuli-driver] [Question #204840]: sleep(2940) kills test

2012-08-02 Thread Roman Podolyan
Question #204840 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204840 Status: Open = Answered Roman Podolyan proposed the following answer: The simple solution I think is: def longsleep(longtime): i = longtime // 400 for j in range(i):

[Sikuli-driver] [Question #204853]: if... : go to

2012-08-02 Thread elias maure
New question #204853 on Sikuli: https://answers.launchpad.net/sikuli/+question/204853 bla = exists(.) if bla: #go to the begin else go further -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli.

Re: [Sikuli-driver] [Question #204853]: if... : go to

2012-08-02 Thread RaiMan
Question #204853 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204853 RaiMan posted a new comment: Hi, Roman: I should save my efforts, when I see you are online ;-) -- You received this question notification because you are a member of Sikuli Drivers, which is an answer

Re: [Sikuli-driver] [Question #204853]: if... : go to

2012-08-02 Thread Roman Podolyan
Question #204853 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204853 Status: Open = Answered Roman Podolyan proposed the following answer: http://sikuli.org/docx/region.html#Region.waitVanish waitVanish(PS[, seconds]) Wait until the give pattern PS in the region

Re: [Sikuli-driver] [Question #204853]: if... : go to

2012-08-02 Thread RaiMan
Question #204853 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204853 RaiMan proposed the following answer: the solution is already mentioned in your last question already mentioned: bla = exists(.) while bla: wait(1) # you should wait a bit before ckecking again

Re: [Sikuli-driver] [Question #204801]: Open browser, type the url/IP address and hit enter

2012-08-02 Thread networkdownloader
Question #204801 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204801 networkdownloader confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because you are a member of Sikuli Drivers, which is an answer

Re: [Sikuli-driver] [Question #204801]: Open browser, type the url/IP address and hit enter

2012-08-02 Thread networkdownloader
Question #204801 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204801 Status: Answered = Solved networkdownloader confirmed that the question is solved: Thank you very much RaiMan for the prompt response. Beyond doubt you must be the best helping all the newbies. great

Re: [Sikuli-driver] [Question #204853]: if... : go to

2012-08-02 Thread elias maure
Question #204853 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204853 Status: Answered = Open elias maure is still having a problem: thanks a lot but i don't get it :( it's for a game :) i want that it click on a enemy and then loop it but when the enemy dies it restart

Re: [Sikuli-driver] [Question #204853]: if... : go to

2012-08-02 Thread elias maure
Question #204853 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204853 Status: Needs information = Open elias maure gave more information on the question: 1bfrage = input( wo wollen sie sin einloggen :D?) 2if abfrage ==(): 3 mach = exists(1343748545312.png) 4tofu

Re: [Sikuli-driver] [Question #204853]: if... : go to

2012-08-02 Thread Roman Podolyan
Question #204853 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204853 Status: Open = Answered Roman Podolyan proposed the following answer: In general to make something forever one should use while(True) def kill_enemy():# define a function containing actions to

[Sikuli-driver] [Question #204875]: java.lang.UnsatisfiedLinkError: C:\Program Files (x86)\Sikuli X\libs\VisionProxy.dll: Can't find dependent libraries

2012-08-02 Thread Neo
New question #204875 on Sikuli: https://answers.launchpad.net/sikuli/+question/204875 I read and followed https://answers.launchpad.net/sikuli/+question/166928, but still see the error in eclipse. Entries in my system path are, C:\Program Files (x86)\Java\jre7\bin;C:\Program Files (x86)\Sikuli

Re: [Sikuli-driver] [Question #204827]: Logging message data from sikuli to a file

2012-08-02 Thread Neo
Question #204827 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/204827 Neo proposed the following answer: if running from command line is not an option with you, you can use logging package. (import logging) BTW, redirecting all logs running through command line is simplest

[Sikuli-driver] [Question #204897]: Use Sikuli to run selemium script

2012-08-02 Thread Lane
New question #204897 on Sikuli: https://answers.launchpad.net/sikuli/+question/204897 OS: Win7 , python27, jython2.5.3b1,sikuli1.0rc3 I use java to run selenium-server.jar I use selemium-ide to recorder script and save as python language for RC ttt.py ### from

[Sikuli-driver] [Bug 949808] Re: [request] Ubuntu 12.04: Sikuli should work with OpenCV 2.3

2012-08-02 Thread Sepero
I was able to get sikuli working on Ubuntu 12.04 by installing these packages. http://packages.ubuntu.com/en/oneiric/amd64/libcv2.1/download http://packages.ubuntu.com/en/oneiric/amd64/libcvaux2.1/download http://packages.ubuntu.com/en/oneiric/amd64/libhighgui2.1/download Thank you to the sikuli

[Sikuli-driver] [Question #204903]: HTML test report SIkuli for UBUNTU(10.04) Operating System

2012-08-02 Thread sweta
New question #204903 on Sikuli: https://answers.launchpad.net/sikuli/+question/204903 Hi , Please help me out , how to generate testreport for sikuli with HTML test runner or any other frame work , Which will be easy to manipulate the test results ... I have downloaded