use of org.openqa.selenium.ie.InternetExplorerDriver in project domui by fjalvingh.
the class WebDriverFactory method allocateIEDriver.
@NonNull
private static WebDriver allocateIEDriver(BrowserModel browser, Locale lang) {
InternetExplorerDriver wd = new InternetExplorerDriver(getIECapabilities(browser, lang));
String browserName = wd.getCapabilities().getBrowserName();
String version = wd.getCapabilities().getVersion();
System.out.println("wd: allocated " + browserName + " " + version);
return wd;
}
Aggregations