Re: [Sikuli-driver] [Question #660171]: Unit testing - Assert Popup Message Box

2017-10-31 Thread Q17
Question #660171 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/660171 Status: Answered => Solved Q17 confirmed that the question is solved: Thanks RaiMan, that solved my question. -- You received this question notification because your team Sikuli Drivers is an answer co

Re: [Sikuli-driver] [Question #660171]: Unit testing - Assert Popup Message Box

2017-10-31 Thread Q17
Question #660171 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/660171 Q17 posted a new comment: Ok thanks I will try find method. -- You received this question notification because your team Sikuli Drivers is an answer contact for Sikuli.

Re: [Sikuli-driver] [Question #660171]: Unit testing - Assert Popup Message Box

2017-10-31 Thread RaiMan
Question #660171 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/660171 Status: Needs information => Answered RaiMan proposed the following answer: exists does not tell you anything but True or False. If you want information, you have to use find/wait and catch the FindFail

Re: [Sikuli-driver] [Question #660171]: Unit testing - Assert Popup Message Box

2017-10-31 Thread Q17
Question #660171 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/660171 Description changed to: Hi, I have used the code below to verify if the image of a popup exists or not but it failed and it does not say why: def testA(self): click(image1) wait(1)

Re: [Sikuli-driver] [Question #660171]: Unit testing - Assert Popup Message Box

2017-10-31 Thread Q17
Question #660171 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/660171 Q17 posted a new comment: Sorry it should be: File "C:\Installs\SikuliX\Validation.sikuli\Validation.py", line 10, in testA assert exists(PopUpImage) -- You received this question notification because your

Re: [Sikuli-driver] [Question #660171]: Unit testing - Assert Popup Message Box

2017-10-31 Thread Q17
Question #660171 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/660171 Q17 posted a new comment: Sorry it should be: File "C:\Installs\SikuliX\Validation.sikuli\Validation.py", line 10, in testA assert exists(PopUpImage) -- You received this question notification because your

Re: [Sikuli-driver] [Question #660171]: Unit testing - Assert Popup Message Box

2017-10-31 Thread RaiMan
Question #660171 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/660171 Status: Open => Needs information RaiMan requested more information: this line File "C:\Installs\SikuliX\Validation.sikuli\Validation.py", line 10, in testA assert exists(images2) is not from your poste

Re: [Sikuli-driver] [Question #660171]: Unit testing - Assert Popup Message Box

2017-10-31 Thread Q17
Question #660171 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/660171 Description changed to: Hi, I have used the code below to verify if the image of a popup exists or not but it failed and it does not say why: def testA(self): click(image1) wait(1)

Re: [Sikuli-driver] [Question #660171]: Unit testing - Assert Popup Message Box

2017-10-31 Thread Q17
Question #660171 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/660171 Description changed to: Hi, I have used the code below to verify if the image of a popup exists or not but it failed and it does not say why: def testA(self): click(image1) wait(1)

[Sikuli-driver] [Question #660171]: Unit testing - Assert Popup Message Box

2017-10-31 Thread Q17
New question #660171 on Sikuli: https://answers.launchpad.net/sikuli/+question/660171 Hi, I have used the code below to verify if the image of the popup exists or not but it failed and it does not say why: def testA(self): click(image1) wait(1) assert exists(PopUpImage)