com.nordstrom.automation.selenium.plugins.OperaPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenium-foundation Show documentation
Show all versions of selenium-foundation Show documentation
Selenium Foundation is an automation framework designed to extend and enhance the capabilities provided by Selenium (WebDriver).
package com.nordstrom.automation.selenium.plugins;
import java.util.Map;
import com.nordstrom.automation.selenium.SeleniumConfig;
public class OperaPlugin extends RemoteWebDriverPlugin {
public OperaPlugin() {
super(OperaCaps.DRIVER_NAME);
}
/**
* org.openqa.selenium.opera.OperaDriver
*
* <dependency>
* <groupId>org.seleniumhq.selenium</groupId>
* <artifactId>selenium-opera-driver</artifactId>
* <version>3.141.59</version>
*</dependency>
*/
private static final String[] DEPENDENCY_CONTEXTS = {
"org.openqa.selenium.opera.OperaDriver",
"net.bytebuddy.matcher.ElementMatcher"
};
/**
* {@inheritDoc}
*/
@Override
public String[] getDependencyContexts() {
return DEPENDENCY_CONTEXTS;
}
/**
* {@inheritDoc}
*/
@Override
public String getCapabilities(SeleniumConfig config) {
return OperaCaps.getCapabilities();
}
/**
* {@inheritDoc}
*/
@Override
public Map getPersonalities() {
return OperaCaps.getPersonalities();
}
/**
* {@inheritDoc}
*/
@Override
public String[] getPropertyNames(String capabilities) {
return OperaCaps.getPropertyNames(capabilities);
}
}