All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.novatec.testit.webtester.browser.factories.MarionetteFactory Maven / Gradle / Ivy

package info.novatec.testit.webtester.browser.factories;

import info.novatec.testit.webtester.browser.Browser;
import info.novatec.testit.webtester.config.Configuration;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxOptions;


/**
 * Factory class for creating Firefox {@link Browser} instances.
 * Needs the {@code webdriver.gecko.driver} system property pointing to the driver proxy server executable.
 * This will only work for Firefox browsers version 47 and above!
 * All older versions should be initialized using the {@link FirefoxFactory}.
 * 

* The following capabilities are set by default: *

    *
  • Native Events are disabled
  • *
  • Unsigned certificates are accepted
  • *
* Additional information on using the {@link FirefoxDriver}: *
    *
  • https://github.com/SeleniumHQ/selenium/wiki/FirefoxDriver
  • *
  • https://github.com/mozilla/geckodriver
  • *
* * @see Browser * @see FirefoxDriver * @see FirefoxFactory * @since 2.1 */ public class MarionetteFactory extends BaseBrowserFactory { private static final String DRIVER_LOCATION = "webdriver.gecko.driver"; public MarionetteFactory() { super((capabilities) -> { FirefoxOptions firefoxOptions = new FirefoxOptions().merge(capabilities); return new FirefoxDriver(firefoxOptions); }); } @Override protected void postProcessConfiguration(Configuration configuration) { configuration.getStringProperty(DRIVER_LOCATION).ifPresent(driverLocation -> { System.setProperty(DRIVER_LOCATION, driverLocation); }); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy