I am working in selenium RC with Java+Junit+Eclipse. For my project I have developed script which will run in only one browser i.e Firefox through the below code..
public void setUp() throws Exception
{
selenium = new DefaultSelenium("localhost", 4444,"*firefox","http://www.google.com");
FinalTestSuite.selenium.start();
selenium.windowFocus();
selenium.windowMaximize();
}
Now I am stuck because requirement came to run the script simultaneously in multiple browsers. I didn't find any helpful article.. Please anyone working on this same scenario...HELP! :)