| Summary: | org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Swathi <swathigajster> | ||||
| Component: | Debug | Assignee: | JDT-Debug-Inbox <jdt-debug-inbox> | ||||
| Status: | RESOLVED NOT_ECLIPSE | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | Michael_Rennie | ||||
| Version: | 3.8 | Keywords: | needinfo | ||||
| Target Milestone: | --- | ||||||
| Hardware: | All | ||||||
| OS: | Windows 7 | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
Created attachment 207345 [details]
screenshot
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 Closing the bug without more information |
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