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