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

info.novatec.testit.webtester.browser.factories.OperaFactory 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.opera.OperaDriver;
import org.openqa.selenium.opera.OperaOptions;

/**
 * Factory class for creating Blink-based Opera {@link Browser} instances.
 * Needs the {@code webdriver.opera.driver} system property pointing to the driver proxy server executable.
 * 

* The following capabilities are set by default: *

    *
  • Native Events are disabled
  • *
  • Unsigned certificates are accepted
  • *
* Additional information on using the {@link OperaDriver}: *

* https://github.com/operasoftware/operachromiumdriver * * @see Browser * @see OperaDriver * @since 2.1 */ public class OperaFactory extends BaseBrowserFactory { private static final String DRIVER_LOCATION = "webdriver.opera.driver"; public OperaFactory() { super((capabilities) -> { OperaOptions operaOptions = new OperaOptions().merge(capabilities); return new OperaDriver(operaOptions); }); } @Override protected void postProcessConfiguration(Configuration configuration) { configuration.getStringProperty(DRIVER_LOCATION).ifPresent(driverLocation -> { System.setProperty(DRIVER_LOCATION, driverLocation); }); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy