Re: [Sikuli-driver] [Question #236452]: Continue script execution despite error

2015-08-19 Thread Jason
Question #236452 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236452 Jason requested more information: I am having the same problem as the OP. I am testing a GUI and I do not want the script to stop running after it reaches a failure (or a missing object). I am using the

Re: [Sikuli-driver] [Question #236452]: Continue script execution despite error

2015-08-19 Thread Eugene S
Question #236452 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236452 Eugene S posted a new comment: please start a new question -- You received this question notification because you are a member of Sikuli Drivers, which is an answer contact for Sikuli.

[Sikuli-driver] [Question #236452]: Continue script execution despite error

2013-09-27 Thread Samuel Schlegel
New question #236452 on Sikuli: https://answers.launchpad.net/sikuli/+question/236452 Hi, I´m using Sikuli for GUI-Testing. It would be nice, if there were a possibility, that would allow me to continue test-execution even if a error occures (e.g. if a UI-control can´t be found, or if a

Re: [Sikuli-driver] [Question #236452]: Continue script execution despite error

2013-09-27 Thread RaiMan
Question #236452 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236452 Status: Open = Answered RaiMan proposed the following answer: see docs http://doc.sikuli.org/region.html#exception-findfailed for options -- You received this question notification because you are a

Re: [Sikuli-driver] [Question #236452]: Continue script execution despite error

2013-09-27 Thread Eugene S
Question #236452 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236452 Eugene S proposed the following answer: You could just create a custom finder function. For example something like that: def tryDetect(object,retries,highLight=1): Attempts to detect the object for

Re: [Sikuli-driver] [Question #236452]: Continue script execution despite error

2013-09-27 Thread Samuel Schlegel
Question #236452 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/236452 Samuel Schlegel posted a new comment: Thank you for replying so rapidly : ) On a first glance it seems to me like defining a skip behaviour for certain events like getFindFailedResponse might be useful if