← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #220385]: Can't run Sikuli JUnit test on Mac

 

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

Description changed to:
Hi there,

I am currently trying to run a very simple JUnit test in Eclipse using
Sikuli. This is the script that I have:

import org.junit.Test;
import org.sikuli.script.App;

public class MacTest
{
    @Test
    public void testMacTest()
    {
        App.open("Firefox");
    }
}

As you can see, all I want to do is open Firefox. When I try and run
this test, I get the following stack trace:

java.lang.NullPointerException
at org.sikuli.script.App.open(App.java:83)
at org.sikuli.script.App.open(App.java:24)
at com.testcases.poc.JillsMacTest.MacTest(JillsMacTest.java:11)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)
at org.junit.runners.ParentRunner.run(ParentRunner.java:300)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

My Mac is running Mac OS X v 10.7.5 and is a 64 bit machine. I have JRE
6 that is installed on my machine by default. Could you please let me
know what I am doing wrong? I thought I followed installation directions
correctly and have been looking around at other answers here... Thank
you!

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.