Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

java -jar selenium-server-2.1.0.jar -role rc -hub http://localhost:4444/grid/register -port 5555

2.8.2011 12:14:12 org.openqa.grid.selenium.GridLauncher main
INFO: Launching a selenium grid node
Exception in thread "main" java.lang.NoClassDefFoundError: org/json/JSONExceptio
n
        at org.openqa.grid.selenium.GridLauncher.main(GridLauncher.java:57)
Caused by: java.lang.ClassNotFoundException: org.json.JSONException
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        ... 1 more
share|improve this question

3 Answers

up vote 3 down vote accepted

You need to use the selenium-server-standalone-2.X.Y.jar in order to get all the necessary libs. The selenium-server-2.X.Y.jar is only if you intend to manage your own classpath.

share|improve this answer
thx for answer. Problem solved – senzacionale Aug 2 '11 at 14:55

I have the same problem. Things I've tried so far:

  1. Include the Selenium-2.3.0/libs folder in my classpath environment variable
  2. Include the Selenium-2.3.0/libs folder with a command line override "-classpath /path/libs/*"
  3. Add json.jar (with JSONException.class in org/json folder) to my jre's ext folder and made sure it's on the classpath
  4. Written my own MyTest.java class (code below), compiled it and run it without problems
    import org.json.JSONException;

    public class MyTest {
      public static void main(String[] args) {
        new JSONException("message");
      }
    }

So what's next?

share|improve this answer
See my answer above. You're likely using the wrong JAR. – nirvdrum Aug 2 '11 at 15:25

As nirvdrum mentioned, unless you want to manage your classpath I would recommend using the selenium standalone server JAR file.

for the hub use: java -jar selenium-server-standalone-2.3.0.jar -role hub

for a node on the same machine: java -jar selnium-server-standalone-2.3.0.jar -role remotecontrol -hub http://localhost:4444/grid/register -port [XXXX] (something other than 4444)

This is just to get your grid setup. In order for you to use run a test through the grid you would need to use a RemoteWebDriver instance that references your hub. For example:

WebDriver driver = new RemoteWebDriver( new URL("http://localhost:4444/wd/hub"), DesiredCapabilities.firefox() );

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.