sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #17192
Re: [Question #225333]: Sikuli project import from Windows to Linux fails
Question #225333 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/225333
Status: Open => Answered
RaiMan proposed the following answer:
The problem is, that for some reason, the instantiation of LinuxUtil.class crashes:
[error] Can't create OS Util: org.sikuli.script.LinuxUtil
This is the interface, that translates methods like openApp() to the
usage of native systemspecific features.
You should try, to use the App class directly:
public static void main(String[] args) {
Screen mScreen = new Screen();
App browser = "/home/sikulliTestImages/skype";
// Opening the .exe file for the specified desktop application
App.open("/home/sikulliTestImages/skype");
..
--
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.