use of org.openqa.selenium.firefox.FirefoxProfile in project simba-os by cegeka.
the class Browser method open.
public static void open() {
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("network.proxy.no_proxies_on", "localhost");
profile.setPreference("intl.accept_languages", "en");
browser = new FirefoxDriver(profile);
browser.manage().timeouts().implicitlyWait(TIME_OUT_IN_SECONDS, TimeUnit.SECONDS);
}
Aggregations