public void testCanLaunchTwoBrowsersInSequence() {
final InternetExplorerCustomProxyLauncher firstLauncher;
final InternetExplorerCustomProxyLauncher secondLauncher;
firstLauncher = new InternetExplorerCustomProxyLauncher(new BrowserConfigurationOptions(), new RemoteControlConfiguration(), "firstSessionId", (String) null);
secondLauncher = new InternetExplorerCustomProxyLauncher(new BrowserConfigurationOptions(), new RemoteControlConfiguration(), "secondSessionId", (String) null);
firstLauncher.launch("http://www.google.com/");
AsyncExecute.sleepTightInSeconds(5);
firstLauncher.close();
secondLauncher.launch("http://www.google.com/");
AsyncExecute.sleepTightInSeconds(5);