Bug 364440 - org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run
Summary: org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run
Status: RESOLVED NOT_ECLIPSE
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Debug (show other bugs)
Version: 3.8   Edit
Hardware: All Windows 7
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: JDT-Debug-Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords: needinfo
Depends on:
Blocks:
 
Reported: 2011-11-22 01:39 EST by Swathi CLA
Modified: 2012-01-11 14:46 EST (History)
1 user (show)

See Also:


Attachments
screenshot (265.45 KB, image/png)
2011-11-22 01:42 EST, Swathi CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Swathi CLA 2011-11-22 01:39:03 EST
Build Identifier: 32bit

package com.eviltester.seleniumtutorials;
import com.thoughtworks.selenium.*;

public class eviltester extends SeleneseTestCase {
	public void setUp() throws Exception {
		selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://www.google.co.in/");
	}


	public void testEvilTester() throws Exception {
		selenium.open("/");
		selenium.type("name=q", "evil tester");
		selenium.click("//a[@id='gb_2']/span[2]");
		selenium.waitForPageToLoad("30000");
		selenium.click("name=btnG");
		selenium.waitForPageToLoad("30000");
	}


	public void tearDown() throws Exception {
		selenium.stop();
	}
}

while running the above program, experincing the below error:

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)


Reproducible: Always
Comment 1 Swathi CLA 2011-11-22 01:42:26 EST
Created attachment 207345 [details]
screenshot
Comment 2 Michael Rennie CLA 2011-11-22 09:27:46 EST
Can you attach the entire stacktrace?

From the looks of the trace in the screen shot this is a problem with Selenium, which would require you to file a bug here: http://code.google.com/p/selenium/issues/list
Comment 3 Michael Rennie CLA 2012-01-11 14:46:01 EST
Closing the bug without more information