Just starting to experiment with Selenium 2.18. Why does Selenium create a new instance of "Remote Control" between each JUnit test item?
I created some unit tests called testA, testB, testC and here is what happens:
setUp:
0. Create static instance of DefaultSelenium
testA:
1. Selenium starts instance of "Remote Control"
2. Selenium starts web browser an opens app
testB:
3. Selenium starts new instance of "Remote Control"
4. Selenium kills first instance of "Remote Control"
5. Script sends existing browser to a URL on the local system (probably
a temp file of some kind)
So, my question is, why can't I get Selenium to have only one constant instance of the "Remote Control" and also one constant instance of the Web browser throughout testA, testB, and testC ?
NOTE: step#5 is concerning to me: if that step didn't redirect to a local file, its possible that the remote control in step#4 might have found content in the page. Does this happen because the new instance of "Remote Control" doesn't know about the existence of the browser started by the first instance of "Remote Control" ?
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;
import org.openqa.selenium.server.RemoteControlConfiguration;
import org.openqa.selenium.server.SeleniumServer;
@RunWith(Suite.class)
@SuiteClasses({ Tests.class })
public class AllTests {
static SeleniumServer seleniumserver;
@BeforeClass
public static void setUpClass() throws Exception {
RemoteControlConfiguration settings = new RemoteControlConfiguration();
settings.setTrustAllSSLCertificates(true);
seleniumserver=new SeleniumServer(settings);
seleniumserver.boot();
seleniumserver.start();
System.out.println("Finished suite setUpClass");
}
...
And for my client:
public class Tests extends SeleneseTestBase {
private static DefaultSelenium selenium;
@Before
public void setUp() throws Exception {
selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://localhost:8181/");
selenium.start();
}
public void testA() { System.out.println("TestA"); }
public void testB() { System.out.println("TestB"); }
public void testC() { System.out.println("TestC"); }