← Back to team overview

sikuli-driver team mailing list archive

[Question #691076]: .isRunning() no long working for SikulixIDE in 2.0.4

 

New question #691076 on Sikuli:
https://answers.launchpad.net/sikuli/+question/691076

2.0.4-2020-03-14_08:01/Mac10.14.5/Java8(64)1.8.0_251-b08

I just upgraded from 1.1.4 and found that the test to see if the IDE is running no longer returns the correct result.
I ran this script in the IDE, and also from a bash file both with the IDE running and not running. The results are always the same.

apps = ['Sikulix','SikulixIDE']
for app in apps:
    sIDE = App(app)
    ideRunning = sIDE.isRunning()
    if ideRunning:
        print(app + ' is running')
    else:
        print(app + ' is not running')

OUTPUT:
Sikulix is running
SikulixIDE is not running

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