← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #290134]: Can't get a basic app to run -- app isRunning reports false

 

Question #290134 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/290134

Description changed to:
Here is the code that I am trying to run on Linux with sikuli 1.1.0:

<code>
firefoxApp = App("firefox")
App.open("firefox")
while not firefoxApp.isRunning():
    print "Waiting for firefox.isRunning", firefoxApp.isRunning()
    wait(1)

firefoxApp.focus()
</code>

With this code, I see that it keeps on waiting for the app as
firefoxApp.isRunning reports false even though the "firefox" launches
fine.  This code is similar to what is suggested in another question:
https://answers.launchpad.net/sikuli/+question/274127.

If I change my code to following:
<code>
firefoxApp = App("firefox")
firefox = App.open("firefox")
while not firefox.isRunning():
    print "Waiting for firefox.isRunning", firefox.isRunning()
    wait(1)

firefoxApp.focus()
...
...
firefoxApp.close()
</code>

it complains with message:

[error] script [ /home/divick/work/server/tests.sikuli ] stopped with error in line 7
[error] AttributeError ( 'NoneType' object has no attribute '__exit__' )


I have tried all sort of combinations but it has issues one way or another. The code and documentation doesn't seem to match. I would appreciate any help.

Thanks,
Divick

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.