com.redhat.darcy.webdriver.FirefoxBrowserFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of darcy-webdriver Show documentation
Show all versions of darcy-webdriver Show documentation
An implementation of darcy and darcy-web that uses Selenium WebDriver as the automation library backend.
The newest version!
/*
Copyright 2014 Red Hat, Inc. and/or its affiliates.
This file is part of darcy-webdriver.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
*/
package com.redhat.darcy.webdriver;
import com.redhat.darcy.web.api.Browser;
import com.redhat.darcy.web.api.BrowserFactory;
import com.redhat.darcy.webdriver.elements.WebDriverElement;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.firefox.FirefoxBinary;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;
import org.openqa.selenium.remote.DesiredCapabilities;
/**
* Fluently describes a {@link BrowserFactory} that creates specifically configured
* {@link FirefoxDriver}s.
*/
public class FirefoxBrowserFactory extends WebDriverBrowserFactory {
private DesiredCapabilities desired;
private DesiredCapabilities required;
private FirefoxProfile profile;
private FirefoxBinary binary;
private ElementConstructorMap elementImpls = ElementConstructorMap
.defaultMap();
@Override
public Browser newBrowser() {
FirefoxDriver driver;
if (profile != null) {
if (binary != null) {
if (desired != null) {
driver = new FirefoxDriver(binary, profile, desired, required);
} else {
driver = new FirefoxDriver(binary, profile);
}
} else {
driver = new FirefoxDriver(profile);
}
} else if (desired != null) {
driver = new FirefoxDriver(desired, required);
} else {
driver = new FirefoxDriver();
}
return makeBrowser(driver, elementImpls);
}
public FirefoxBrowserFactory desiring(Capabilities capabilities) {
desired = new DesiredCapabilities(capabilities, desired);
return this;
}
public FirefoxBrowserFactory requiring(Capabilities capabilities) {
required = new DesiredCapabilities(capabilities, required);
return this;
}
public FirefoxBrowserFactory usingProfile(FirefoxProfile fp) {
profile = fp;
return this;
}
public FirefoxBrowserFactory usingBinary(FirefoxBinary fb) {
binary = fb;
return this;
}
@Override
public FirefoxBrowserFactory withElementImplementation(
Class super E> type, ElementConstructor constructor) {
elementImpls.put(type, constructor);
return this;
}
}