Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-03-02 Thread yop
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 yop 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 contact for Sikuli.

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-03-02 Thread yop
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 Status: Answered => Solved yop confirmed that the question is solved: Thanks for your reply, your support and Sikulix !!! -- You received this question notification because your team Sikuli Drivers is

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-03-02 Thread RaiMan
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 Status: Open => Answered RaiMan proposed the following answer: Thanks for the information - very clear ;-) I guess the problem is, that for Linux the App features are not all completely implemented -

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-03-01 Thread yop
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 Status: Answered => Open yop is still having a problem: Hello, After some Holidays and few tests. For information the solution for me is the following script : myApp=App('PathtoMyApp') myApp.open()

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-02-16 Thread yop
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 yop posted a new comment: thanks for your reply. It's looks exaclty i need ! It's looks Working whit FireFox. My problem comme from whit an another app i lauch it by start a Gnome-Terminal and paste "LD

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-02-16 Thread RaiMan
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 RaiMan proposed the following answer: you might also try this http://sikulix-2014.readthedocs.io/en/latest/appclass.html#App.isRunning -- You received this question notification because your team Sikuli

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-02-16 Thread RaiMan
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 RaiMan proposed the following answer: myApp = App('Firefox') for step in range (60): if not myApp.window(): wait(1) App.open ('gnome-terminal') -- You received this question notification

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-02-16 Thread yop
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 yop posted a new comment: yes ...but i am not an expert :-) I looked again the last docs "Sikulix 2014 - 01 2018" (very nice) i wanted to try the function " "myApp.windows" for exemple -1- with Firefox NOT

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-02-16 Thread RaiMan
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 Status: Open => Answered RaiMan proposed the following answer: Already looked into the docs? what about comment #1? -- You received this question notification because your team Sikuli Drivers is an

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-02-16 Thread yop
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 yop posted a new comment: Error is : "AttributeError: type object 'App' has no attribute 'waitVanish' Regards -- You received this question notification because your team Sikuli Drivers is an answer

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-02-15 Thread yop
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 Status: Answered => Open yop is still having a problem: Thanks for your reply RaiMan. You mean that "App.waitVanish('someapp', FOREVER)" would work? -- You received this question notification because

Re: [Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-02-15 Thread RaiMan
Question #664446 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/664446 Status: Open => Answered RaiMan proposed the following answer: already checked the observe feature? -- You received this question notification because your team Sikuli Drivers is an answer contact for

[Sikuli-driver] [Question #664446]: Similar Function App.waitVanish('someapp')

2018-02-15 Thread yop
New question #664446 on Sikuli: https://answers.launchpad.net/sikuli/+question/664446 Hello, I am looking for a function like : waitVanish("image.png", FOREVER) but for a process or an application .so llike this :-) : App.waitVanish('someapp', FOREVER) have you any idea for that function ?