use of org.openqa.selenium.chrome.ChromeDriver in project nzbhydra2 by theotherp.
the class WebDriverConfiguration method initializeChromeDriver.
@Bean
@Profile("dev")
protected ChromeDriver initializeChromeDriver() {
logger.info("Creating chrome web driver");
System.setProperty("webdriver.chrome.driver", CHROMEDRIVER);
ChromeDriver webDriver = new ChromeDriver();
WebDriverConfiguration.webDriver = webDriver;
return webDriver;
}
use of org.openqa.selenium.chrome.ChromeDriver in project zeppelin by apache.
the class WebDriverManager method getWebDriver.
public static WebDriver getWebDriver() {
WebDriver driver = null;
try {
int firefoxVersion = WebDriverManager.getFirefoxVersion();
LOG.info("Firefox version " + firefoxVersion + " detected");
downLoadsDir = FileUtils.getTempDirectory().toString();
String tempPath = downLoadsDir + "/firefox/";
downloadGeekoDriver(firefoxVersion, tempPath);
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("browser.download.folderList", 2);
profile.setPreference("browser.download.dir", downLoadsDir);
profile.setPreference("browser.helperApps.alwaysAsk.force", false);
profile.setPreference("browser.download.manager.showWhenStarting", false);
profile.setPreference("browser.download.manager.showAlertOnComplete", false);
profile.setPreference("browser.download.manager.closeWhenDone", true);
profile.setPreference("app.update.auto", false);
profile.setPreference("app.update.enabled", false);
profile.setPreference("dom.max_script_run_time", 0);
profile.setPreference("dom.max_chrome_script_run_time", 0);
profile.setPreference("browser.helperApps.neverAsk.saveToDisk", "application/x-ustar,application/octet-stream,application/zip,text/csv,text/plain");
profile.setPreference("network.proxy.type", 0);
FirefoxOptions firefoxOptions = new FirefoxOptions();
firefoxOptions.setProfile(profile);
ImmutableMap<String, String> displayImmutable = ImmutableMap.<String, String>builder().build();
if ("true".equals(System.getenv("TRAVIS"))) {
// Run with DISPLAY 99 for TRAVIS or other build machine
displayImmutable = ImmutableMap.of("DISPLAY", ":99");
}
System.setProperty(FirefoxDriver.SystemProperty.BROWSER_LOGFILE, "/dev/null");
System.setProperty(FirefoxDriver.SystemProperty.DRIVER_USE_MARIONETTE, "true");
driver = new FirefoxDriver(new GeckoDriverService.Builder().usingDriverExecutable(new File(tempPath + "geckodriver")).withEnvironment(displayImmutable).build(), firefoxOptions);
} catch (Exception e) {
LOG.error("Exception in WebDriverManager while FireFox Driver ", e);
}
if (driver == null) {
try {
driver = new ChromeDriver();
} catch (Exception e) {
LOG.error("Exception in WebDriverManager while ChromeDriver ", e);
}
}
if (driver == null) {
try {
driver = new SafariDriver();
} catch (Exception e) {
LOG.error("Exception in WebDriverManager while SafariDriver ", e);
}
}
String url;
if (System.getenv("url") != null) {
url = System.getenv("url");
} else {
url = "http://localhost:8080";
}
long start = System.currentTimeMillis();
boolean loaded = false;
driver.manage().timeouts().implicitlyWait(AbstractZeppelinIT.MAX_IMPLICIT_WAIT, TimeUnit.SECONDS);
driver.get(url);
while (System.currentTimeMillis() - start < 60 * 1000) {
// wait for page load
try {
(new WebDriverWait(driver, 30)).until(new ExpectedCondition<Boolean>() {
@Override
public Boolean apply(WebDriver d) {
return d.findElement(By.xpath("//i[@uib-tooltip='WebSocket Connected']")).isDisplayed();
}
});
loaded = true;
break;
} catch (TimeoutException e) {
LOG.info("Exception in WebDriverManager while WebDriverWait ", e);
driver.navigate().to(url);
}
}
if (loaded == false) {
fail();
}
driver.manage().window().maximize();
return driver;
}
use of org.openqa.selenium.chrome.ChromeDriver in project BuildRadiator by BuildRadiator.
the class RadiatorWebDriverTest method sharedForAllTests.
@BeforeClass
public static void sharedForAllTests() {
// Keep the WebDriver browser window open between tests
ChromeOptions co = new ChromeOptions();
boolean headless = Boolean.parseBoolean(System.getProperty("HEADLESS", "false"));
if (headless) {
co.addArguments("headless");
}
co.addArguments("window-size=1200x800");
DRIVER = new ChromeDriver(co);
FWD = new FluentWebDriver(DRIVER);
}
use of org.openqa.selenium.chrome.ChromeDriver in project java.webdriver by sayems.
the class GetTitle method main.
public static void main(String[] args) {
WebDriver driver = new ChromeDriver();
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
driver.navigate().to("http://www.google.com");
JavascriptExecutor js = (JavascriptExecutor) driver;
System.out.println(js.executeScript("return document.title"));
}
use of org.openqa.selenium.chrome.ChromeDriver in project java.webdriver by sayems.
the class ScrollUpDown method main.
public static void main(String[] args) {
WebDriver driver = new ChromeDriver();
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
driver.navigate().to("http://www.google.com");
JavascriptExecutor js = (JavascriptExecutor) driver;
// Scroll up
js.executeScript("scroll(250, 0)");
// Scroll down
js.executeScript("window.scrollBy(0,250)", "");
}
Aggregations