final BrowserLauncher launcher = new BrowserLauncher(browserType);
launcher.setMaxTimeToWaitForPIDs(Configuration.getMaxTimeForPIDGatherFromDashboard());
String url = "http://" + Configuration.getCommonDomain() + "/_s_/dyn/Driver_initialized?browserType=" + browserType.name();
try {
launcher.openURL(url);
launcher.waitTillAlive();
launcher.kill();
} catch (Exception e) {
e.printStackTrace();
}
}