[Sikuli-driver] [Question #202916]: ASC/DSC Order in Sikuli

2012-07-12 Thread Mandar Prakash Sabnis
New question #202916 on Sikuli: https://answers.launchpad.net/sikuli/+question/202916 Hi, In Sikuli I wanted to know how we can verify a grid values are in ASC/DSC order. Regards, Mandar P. Sabnis -- You received this question notification because you are a member of Sikuli Drivers, which

Re: [Sikuli-driver] [Question #202853]: Drag or mouseDown won't grab a selection

2012-07-12 Thread RaiMan
Question #202853 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202853 Status: Open = Answered RaiMan proposed the following answer: I tested on my Mac OSX 10.7.4 dragging a group of files from a Finder column to another column. the following script worked as expected:

Re: [Sikuli-driver] [Question #202408]: using com.mysql.jdbc.Driver (offifial JDBC driver from MySQL) in Sikuli script --- workaround

2012-07-12 Thread Carter Zhang
Question #202408 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202408 Carter Zhang posted a new comment: Hi RaiMan, I referred to what you said and succeeded in connecting to the MySQL server through Sikuli. Thank you very much! -- You received this question notification

Re: [Sikuli-driver] [Question #202408]: using com.mysql.jdbc.Driver (official JDBC driver from MySQL) in Sikuli script --- workaround

2012-07-12 Thread RaiMan
Question #202408 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202408 Summary changed to: using com.mysql.jdbc.Driver (official JDBC driver from MySQL) in Sikuli script --- workaround -- You received this question notification because you are a member of Sikuli Drivers,

Re: [Sikuli-driver] [Question #202916]: ASC/DSC Order in Sikuli

2012-07-12 Thread RaiMan
Question #202916 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202916 Status: Open = Answered RaiMan proposed the following answer: If you are talking about some table, that contains numbers/text: You might try to collect the values using Region.text() and do the check

Re: [Sikuli-driver] [Question #202408]: using com.mysql.jdbc.Driver (official JDBC driver from MySQL) in Sikuli script --- workaround

2012-07-12 Thread RaiMan
Question #202408 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202408 Status: Answered = Solved RaiMan changed the question status: confirmed by user -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for

Re: [Sikuli-driver] [Question #202876]: Sikuli CGI problem

2012-07-12 Thread RaiMan
Question #202876 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202876 Status: Open = Answered RaiMan proposed the following answer: So the question is: does it still work without the configuration change? If yes, then it might be a problem accessing the screen. So you

Re: [Sikuli-driver] [Question #140743]: Sikuli X fails to execute scripts via NetBeans, Eclipse or Jython using sikuli-script.jar

2012-07-12 Thread Omkkumar
Question #140743 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/140743 Omkkumar posted a new comment: Can u pls explain wat is meant exactly by java class path and python sys.path.? -- You received this question notification because you are a member of Sikuli Drivers, which

Re: [Sikuli-driver] [Question #202408]: using com.mysql.jdbc.Driver (official JDBC driver from MySQL) in Sikuli script --- workaround

2012-07-12 Thread RaiMan
Question #202408 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202408 Status: Open = Answered RaiMan proposed the following answer: Ok, you have to transform it to a Windows command file ;-) something like that set

Re: [Sikuli-driver] [Question #140743]: Sikuli X fails to execute scripts via NetBeans, Eclipse or Jython using sikuli-script.jar

2012-07-12 Thread RaiMan
Question #140743 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/140743 RaiMan posted a new comment: Uuups, that is basic knowledge ;-) java class path: see Java docs sys.path: see Python docs -- You received this question notification because you are a member of Sikuli

Re: [Sikuli-driver] [Question #202408]: using com.mysql.jdbc.Driver (official JDBC driver from MySQL) in Sikuli script --- workaround

2012-07-12 Thread Dave Doodeman
Question #202408 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202408 Status: Answered = Solved Dave Doodeman confirmed that the question is solved: It's alive... Ok, now I need to get some code done Thanks RaiMan -- You received this question notification because you

Re: [Sikuli-driver] [Question #202820]: Selenium in sikuli

2012-07-12 Thread fernando gandini
Question #202820 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202820 Status: Answered = Solved fernando gandini confirmed that the question is solved: great RaiMan, i'll try that. Many thanks -- You received this question notification because you are a member of Sikuli

[Sikuli-driver] [Question #202942]: exit() inside try/except

2012-07-12 Thread fernando gandini
New question #202942 on Sikuli: https://answers.launchpad.net/sikuli/+question/202942 Hi folks, im having a insue with exit() inside of try/except... when the try found some image, then a popup appear and when user click Ok, sikuli should exit...but it dont, sikuli keep runing.. any one know

Re: [Sikuli-driver] [Question #202942]: exit() inside try/except

2012-07-12 Thread Roman Podolyan
Question #202942 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202942 Status: Open = Answered Roman Podolyan proposed the following answer: Here is working code: import sys try: hover(1342096962957.png) popup('Ok!') sys.exit() except

Re: [Sikuli-driver] [Question #202942]: exit() inside try/except

2012-07-12 Thread RaiMan
Question #202942 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202942 RaiMan proposed the following answer: @Roman ;-) import sys not needed in Sikuli scripts, since sys and time are already imported The problem with Sikuli's exit() in a try, is that it itself throws some

Re: [Sikuli-driver] [Question #202942]: exit() inside try/except

2012-07-12 Thread RaiMan
Question #202942 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202942 RaiMan posted a new comment: BTW this could all be much simpler: if regVig.exists(Pattern(Ocarreramexc.png).similar(0.50).targetOffset(-2,43)): pressKEY(1,Key.ENTER) popup(Ocorreram exceções neste

Re: [Sikuli-driver] [Question #202942]: exit() inside try/except

2012-07-12 Thread fernando gandini
Question #202942 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202942 Status: Answered = Solved fernando gandini confirmed that the question is solved: hi... Roman thanks for the answer but its not work... RaiMan, both answers works fine.. Thanks -- You received this

Re: [Sikuli-driver] [Question #202836]: Generic sikuli logic if screen postion got changed

2012-07-12 Thread manas
Question #202836 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202836 manas posted a new comment: Thanks for your reply. -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli.

[Sikuli-driver] [Question #202947]: Confuse in sikuli search behavior

2012-07-12 Thread manas
New question #202947 on Sikuli: https://answers.launchpad.net/sikuli/+question/202947 if find(VNkai.png): print PASS else: print FAIL I am trying to search one image in a screen ,but the searching image is there or not every time my out put is PASS. Where is the problem in my script?

[Sikuli-driver] [Question #202951]: Locating a text in window

2012-07-12 Thread Faisal
New question #202951 on Sikuli: https://answers.launchpad.net/sikuli/+question/202951 Hi, Very recently I have started using Sikuli. I have came across a situation as explained below. Sikuli can be used to record a image and search for it any where in the screen, no need to specify any

Re: [Sikuli-driver] [Question #202951]: Locating a text in window

2012-07-12 Thread Damon
Question #202951 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202951 Damon posted a new comment: I too have a need for this. I am looking at an OCR solution using Python. If this works I will happily share with the community. Essentially I will take the text and convert it

Re: [Sikuli-driver] [Question #202876]: Sikuli CGI problem

2012-07-12 Thread Dobri Dobrev
Question #202876 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202876 Dobri Dobrev posted a new comment: Thanks a lot for the help. Seems like Sikuli does not see the screen when ran from the CGI script. The code I used is: SCREEN=Screen(0) SCREEN.capture() When I call it

Re: [Sikuli-driver] [Question #202876]: Sikuli CGI problem

2012-07-12 Thread RaiMan
Question #202876 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202876 RaiMan requested more information: yes, this is strange. But this seems to be more a Jython problem. just run a script with a simple capture() If you get the error again, pls. paste the error stack trace.

Re: [Sikuli-driver] [Question #202947]: Confuse in sikuli search behavior

2012-07-12 Thread RaiMan
Question #202947 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202947 Status: Open = Answered RaiMan proposed the following answer: If you want to do something like this with if, use exists instead of find (see faq 1501), since find aborts the script on FindFailed. faq

Re: [Sikuli-driver] [Question #202951]: Locating a text in window

2012-07-12 Thread RaiMan
Question #202951 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202951 Status: Open = Answered RaiMan proposed the following answer: Generally Sikuli can find text in a region or the whole screen: some_region.find(some text) see the docs for more information. But the

Re: [Sikuli-driver] [Question #202876]: Sikuli CGI problem

2012-07-12 Thread Dobri Dobrev
Question #202876 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202876 Status: Answered = Solved Dobri Dobrev confirmed that the question is solved: After restarting Apache a couple of times, it started working, without me changing anything. Really weird. Nevertheless,

Re: [Sikuli-driver] [Question #202951]: Locating a text in window

2012-07-12 Thread Damon
Question #202951 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/202951 Damon posted a new comment: Thanks RaiMan. I am new to Sikuli and am very familiar with Selenium. Unfortunately I am testing a legacy app written in VB6. This app has a grid control that you cannot latch

Re: [Sikuli-driver] [Question #201557]: Object null reference error on a button click in a windows client app

2012-07-12 Thread Sid
Question #201557 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/201557 Status: Answered = Solved Sid 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,

[Sikuli-driver] [Bug 769837] Re: X-1.0rc3: Env.getClipboard() seems to work only once and does not access real clipboard anymore after using paste()

2012-07-12 Thread Sid
I am having the same issue. Would this issue be fixed, anytime soon ? -- You received this bug notification because you are a member of Sikuli Drivers, which is subscribed to Sikuli. https://bugs.launchpad.net/bugs/769837 Title: X-1.0rc3: Env.getClipboard() seems to work only once and does

[Sikuli-driver] [Question #203000]: wrong colors in screenshots made with caption(region)

2012-07-12 Thread ash
New question #203000 on Sikuli: https://answers.launchpad.net/sikuli/+question/203000 I made several screenshots with the following command: capture(some_region) All is fine, but some colors in those screenshots are slightly wrong - little darker than original. Could it be that compression in