vote up 0 vote down star

this is the error i'm getting when i tried to run my selenium script through a build.xml on a network server

@BeforeTest Setup
java.lang.RuntimeException: Could not start Selenium session: Internal Server Error
at com.thoughtworks.selenium.DefaultSelenium.start(DefaultSelenium.java:89)
at com.doubleclick.richmedia.selenium.InpageEndToEnd.createSeleniumClient(InpageEndToEnd.java:34)
at com.doubleclick.richmedia.selenium.InpageEndToEnd.setUp(InpageEndToEnd.java:27)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:90)
Caused by: com.thoughtworks.selenium.SeleniumException: Internal Server Error
at com.thoughtworks.selenium.HttpCommandProcessor.throwAssertionFailureExceptionOrError(HttpCommandProcessor.java:97)
at com.thoughtworks.selenium.HttpCommandProcessor.getCommandResponseAsString(HttpCommandProcessor.java:168)
at com.thoughtworks.selenium.HttpCommandProcessor.executeCommandOnServlet(HttpCommandProcessor.java:104)
at com.thoughtworks.selenium.HttpCommandProcessor.doCommand(HttpCommandProcessor.java:86)
at com.thoughtworks.selenium.HttpCommandProcessor.getString(HttpCommandProcessor.java:262)
at com.thoughtworks.selenium.HttpCommandProcessor.start(HttpCommandProcessor.java:223)
at com.thoughtworks.selenium.DefaultSelenium.start(DefaultSelenium.java:81)
... 26 more
... Removed 23 stack frames

And here's my @BeforeTest script

@BeforeTest

public void setUp() throws Exception {
createSeleniumClient("http://www.google.com");
}

protected DefaultSelenium createSeleniumClient(String url) throws Exception {
    selenium =  new DefaultSelenium("localhost", 4444, "*firefox", url);
    selenium.start();
    selenium.setSpeed("2000");
    selenium.deleteAllVisibleCookies();
    return selenium;
}

Am I doing something wrong here? I was able to run this locally through intellij Thanks.

flag

0% accept rate

5 Answers

vote up 0 vote down

JLau, How did you resolve this problem? I am running into the same problem. Thanks.

link|flag
vote up 0 vote down

Have you verified that the network server that you're trying to execute the tests on is running the Selenium Server? The error looks like the RC code is having trouble connecting to the server to start the tests...

I'd suggest trying to execute the tests manually on the build machine at first in order to ensure that everything is configured properly.

link|flag
Thanks, I have already resolved this problem. – JLau Jun 29 at 14:46
How did you solve this problem? – youkey Nov 13 at 12:24
vote up 0 vote down

Have you made sure that you have both the Selenium server jar and the java client jar from the same version? I accidentally had server version 0.9.2 and client jar 1 beta and was getting this error. Making sure I was compiling with the 0.9.2 client jar fixed the issue for me.

link|flag
vote up 0 vote down

doing some research and I found other people have similar problems

http://clearspace.openqa.org/search.jspa?resultTypes=BLOG_POST&resultTypes=DOCUMENT&resultTypes=MESSAGE&resultTypes=BLOG&resultTypes=COMMUNITY&resultTypes=TASK&resultTypes=PROJECT&resultTypes=SOCIAL_GROUP&resultTypes=COMMENT&peopleEnabled=true&q=selenium+session:+internal+server+error

Most of the posts there don't have actual solutions that can assist my problem. Has anyone come across this issue?

link|flag
vote up 0 vote down

This may sound like a strange question, but are you really passing "url" literally in

createSeleniumClient("url");

"url" is no valid url and so I'd expect Selenium to complain here.

link|flag
oh sorry, i do have a valid url in there, i just didn't put it in. – JLau May 8 at 20:25

Your Answer

Get an OpenID
or

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