Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 364440

Summary: org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run
Product: [Eclipse Project] JDT Reporter: Swathi <swathigajster>
Component: DebugAssignee: JDT-Debug-Inbox <jdt-debug-inbox>
Status: RESOLVED NOT_ECLIPSE QA Contact:
Severity: normal    
Priority: P3 CC: Michael_Rennie
Version: 3.8Keywords: needinfo
Target Milestone: ---   
Hardware: All   
OS: Windows 7   
Whiteboard:
Attachments:
Description Flags
screenshot none

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