Re: [Sikuli-driver] [Question #693580]: Can't findText() with special character

2020-10-23 Thread Ben
Question #693580 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/693580 Status: Answered => Solved Ben confirmed that the question is solved: Oh wow I didn't think about trying with the u"", thank you for your help masuo ! Have a good day ! -- You received this question n

Re: [Sikuli-driver] [Question #693580]: Can't findText() with special character

2020-10-23 Thread Ben
Question #693580 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/693580 Ben confirmed that the question is solved: Thanks masuo, that solved my question. -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli. __

Re: [Sikuli-driver] [Question #693582]: Is there way in sikuli to wait for an element until its visible ? ? ?

2020-10-23 Thread RaiMan
Question #693582 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/693582 Status: Open => Answered RaiMan proposed the following answer: Boolean success = null; for (int n=0; n < 3600; n++) { if (screen.exists("failed.png", 0)) {success = false; break} if (screen.exists("s

Re: [Sikuli-driver] [Question #693497]: IntelliJ IDEA artifact.jar and ImagePath

2020-10-23 Thread RaiMan
Question #693497 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/693497 Status: Needs information => Answered RaiMan changed the question status: got the stuff - will come back -- You received this question notification because your team Sikuli Drivers is an answer contact

Re: [Sikuli-driver] [Question #693577]: runing a sikuli script from remote desktop throws back this error: [error] Location: outside any screen

2020-10-23 Thread RaiMan
Question #693577 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/693577 Status: Open => Answered RaiMan proposed the following answer: I think you have to keep the session running and take care, that the remote system keeps the screen active. -- You received this question

Re: [Sikuli-driver] [Question #693577]: runing a sikuli script from remote desktop throws back this error: [error] Location: outside any screen

2020-10-23 Thread reda benslal
Question #693577 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/693577 reda benslal posted a new comment: thank you for the response, you confirmed some of our speculations. at least now, we have a better understanding on how to adapt to the situation -- You received this ques

Re: [Sikuli-driver] [Question #693582]: Is there way in sikuli to wait for an element until its visible ? ? ?

2020-10-23 Thread Kogul
Question #693582 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/693582 Status: Answered => Open Kogul is still having a problem: Hi Railman, Thanks for the reply and solution. I will implement the above solution get back here if there is any hurdle in the implementation.