Re: [Sikuli-driver] [Question #180749]: Paste paths including ""

2011-12-02 Thread Ezequiel
Question #180749 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180749 Status: Answered => Solved Ezequiel confirmed that the question is solved: Hi Raiman I tried this and works PERFECT!! paste( 'C:\Automation\sikuli endpoints\endpoints_changer.bat "C:\Program Files\\' +

Re: [Sikuli-driver] [Question #180749]: Paste paths including ""

2011-12-02 Thread RaiMan
Question #180749 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180749 Status: Open => Answered RaiMan proposed the following answer: Try the following: paste( 'C:\Automation\sikuli endpoints\endpoints_changer.bat "C:\Program Files\' + msg + '"' ) we use single quotes for

[Sikuli-driver] [Question #180749]: Paste paths including ""

2011-12-02 Thread Ezequiel
New question #180749 on Sikuli: https://answers.launchpad.net/sikuli/+question/180749 Hi all I need pass parameters including "" because windows needs "" to understand the path "Program Files\xxx" How can I pass the parameter: C:\Program Files\\"+msgwith "" like "C:\Program Files\HELLO\HELLO

Re: [Sikuli-driver] [Question #176026]: i can not run sikuli

2011-12-02 Thread Mikeldi Latorre
Question #176026 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/176026 Mikeldi Latorre proposed the following answer: Update your java version (http://java.com/en/download/) -- You received this question notification because you are a member of Sikuli Drivers, which is an answ

Re: [Sikuli-driver] [Question #180617]: How to clear clipboard(setCliboard)?

2011-12-02 Thread dinev
Question #180617 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180617 Status: Answered => Solved dinev confirmed that the question is solved: I created simple(1 row in autoit :-) ) console application that does this and I use openApp to run it. Works perfectly for me. Hop

Re: [Sikuli-driver] [Question #180648]: [Java] Eclipse RCP Plugin: problems with Screen.userCapture()

2011-12-02 Thread RaiMan
Question #180648 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180648 Summary changed to: [Java] Eclipse RCP Plugin: problems with Screen.userCapture() -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli

Re: [Sikuli-driver] [Question #180648]: [Java]CapturePrompt problem

2011-12-02 Thread RaiMan
Question #180648 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180648 RaiMan proposed the following answer: ok, understood. Come back if you have more information. Thanks -- You received this question notification because you are a member of Sikuli Drivers, which is an answe

Re: [Sikuli-driver] [Question #180715]: Problem in running sikuli script in another Image

2011-12-02 Thread RaiMan
Question #180715 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180715 Status: Open => Needs information RaiMan requested more information: Despite the fact, that Sikuli finds what you can see on the monitor, these problems have nothing to do with the monitor itself, but wi

[Sikuli-driver] [Question #180715]: Problem in running sikuli script in another Image

2011-12-02 Thread Prateek Sahu
New question #180715 on Sikuli: https://answers.launchpad.net/sikuli/+question/180715 I have created a sikuli script on my machine... now I am trying to run the same script on other machine But the sikuli script is not running-it is not able to identify the images... I have checked the resoluti

Re: [Sikuli-driver] [Question #180648]: [Java]CapturePrompt problem

2011-12-02 Thread flip
Question #180648 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180648 flip posted a new comment: Thanks. Yes, i can capture with: Screen screen = new Screen(); ScreenImage scrImg = screen.userCapture(); // or Region reg = screen.selectRegion(); but, i'm developing a RCP plu

Re: [Sikuli-driver] [Question #179984]: Java: capture screenshot in failed test cases

2011-12-02 Thread RaiMan
Question #179984 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/179984 Summary changed to: Java: capture screenshot in failed test cases -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli. _

[Sikuli-driver] [Bug 894312] Re: Windows: Selecting text using SHIFT + HOME does not work --- workaround

2011-12-02 Thread RaiMan
** Description changed: + workaround + from https://launchpad.net/~ketankalia (comment #2) + + Apparently for the moment num lock has to be turned off for SHIFT+HOME + to work. + + Use Sikuli's NumLock check feature + (http://sikuli.org/docx/globals.html#Env.isLockOn) and + type(Key.NUM_LO

[Sikuli-driver] [Bug 894312] Re: Windows: Selecting text using SHIFT + HOME does not work --- workaround

2011-12-02 Thread RaiMan
** Summary changed: - Windows: Selecting text using SHIFT + HOME does not work + Windows: Selecting text using SHIFT + HOME does not work --- workaround -- You received this bug notification because you are a member of Sikuli Drivers, which is subscribed to Sikuli. https://bugs.launchpad.net/bug

Re: [Sikuli-driver] [Question #180695]: assertExist and assert Env.getClipboard() not wroking

2011-12-02 Thread RaiMan
Question #180695 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180695 Status: Open => Answered RaiMan proposed the following answer: --- must be: Env.getClipboard() == "3" since Env.getClipboard() returns strings, if anything at all. --- assertExist ("img.png") this is d

Re: [Sikuli-driver] [Question #180695]: assertExist and assert Env.getClipboard() not wroking

2011-12-02 Thread RaiMan
Question #180695 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180695 RaiMan proposed the following answer: sorry for the typo :-( assert exists("img.png") -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for S

Re: [Sikuli-driver] [Question #180648]: [Java]CapturePrompt problem

2011-12-02 Thread RaiMan
Question #180648 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180648 Status: Open => Answered RaiMan proposed the following answer: CapturePrompt is only half of the story: only the overlay window, without the capture logic behind. It is not really a public API. (from: h

[Sikuli-driver] [Question #180695]: assertExist and assert Env.getClipboard() not wroking

2011-12-02 Thread nitin kumar maurya
New question #180695 on Sikuli: https://answers.launchpad.net/sikuli/+question/180695 how does assertExist ("img.png") work .. during run process is shows not assertExist not define. same problem occurs with assert Env.getClipboard() def setUp(self): setAutoWaitTimeout(10) openAp

Re: [Sikuli-driver] [Question #178976]: How to calculate region ?

2011-12-02 Thread RaiMan
Question #178976 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/178976 Status: Expired => Solved RaiMan changed the question status: at least some hint -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Si

Re: [Sikuli-driver] [Question #178976]: How to calculate region ?

2011-12-02 Thread Launchpad Janitor
Question #178976 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/178976 Status: Needs information => Expired Launchpad Janitor expired the question: This question was expired because it remained in the 'Needs information' state without activity for the last 15 days. -- You

Re: [Sikuli-driver] [Question #178968]: Android: Issue with ScreenCast.jnlp for Sikuli

2011-12-02 Thread Launchpad Janitor
Question #178968 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/178968 Status: Open => Expired Launchpad Janitor expired the question: This question was expired because it remained in the 'Open' state without activity for the last 15 days. -- You received this question no

Re: [Sikuli-driver] [Question #180618]: [HowTo] Passing extra arguments to event handler

2011-12-02 Thread RaiMan
Question #180618 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180618 RaiMan posted a new comment: Thanks for sharing. I will add it to the docs. -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli. ___

Re: [Sikuli-driver] [Question #180618]: [HowTo] Passing extra arguments to observe's onXXX event handlers

2011-12-02 Thread RaiMan
Question #180618 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180618 Summary changed to: [HowTo] Passing extra arguments to observe's onXXX event handlers -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Si

Re: [Sikuli-driver] [Question #180617]: How to clear clipboard(setCliboard)?

2011-12-02 Thread RaiMan
Question #180617 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180617 Status: Open => Answered RaiMan proposed the following answer: On the Sikuli script level, this is currently not possible. And as you noticed: getClipboard() and paste() do not play together. If you ar

Re: [Sikuli-driver] [Question #180585]: Confused about the Unit Test feature in Sikuli

2011-12-02 Thread RaiMan
Question #180585 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180585 Status: Open => Answered RaiMan proposed the following answer: As long as your tests are such simple (click and wait ;-) and do not need any special features (calling other functions, or even imports) yo

Re: [Sikuli-driver] [Question #180457]: Region click + next point of region

2011-12-02 Thread RaiMan
Question #180457 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/180457 Status: Open => Answered RaiMan proposed the following answer: to just click points on the screen, we have the Location objects, which just have x and y coordinates. There are some Region methods, that