New question #290134 on Sikuli:
https://answers.launchpad.net/sikuli/+question/290134
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.
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.
_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help : https://help.launchpad.net/ListHelp