sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #50432
Re: [Question #678428]: Jython App() crashes with NullPointerException
Question #678428 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/678428
Dirk Schiller gave more information on the question:
Found a Solution. Not happy with that but it works.
Possible Solution:
==============
# sandbox.py
import sys
sys.path.append('sikulixapi.jar')
from org.sikuli.script import App
try:
app = App('test')
except:
pass
finally:
app = App('test')
app.open()
--
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.