com.nordstrom.automation.selenium.plugins.EdgePlugin 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 EdgePlugin extends RemoteWebDriverPlugin {
public EdgePlugin() {
super(EdgeCaps.DRIVER_NAME);
}
/**
* org.openqa.selenium.edge.EdgeDriver
*
* <dependency>
* <groupId>org.seleniumhq.selenium</groupId>
* <artifactId>selenium-edge-driver</artifactId>
* <version>3.141.59</version>
*</dependency>
*/
private static final String[] DEPENDENCY_CONTEXTS = {
"org.openqa.selenium.edge.EdgeDriver"
};
/**
* {@inheritDoc}
*/
@Override
public String[] getDependencyContexts() {
return DEPENDENCY_CONTEXTS;
}
/**
* {@inheritDoc}
*/
@Override
public String getCapabilities(SeleniumConfig config) {
return EdgeCaps.getCapabilities();
}
/**
* {@inheritDoc}
*/
@Override
public Map getPersonalities() {
return EdgeCaps.getPersonalities();
}
/**
* {@inheritDoc}
*/
@Override
public String[] getPropertyNames(String capabilities) {
return EdgeCaps.getPropertyNames(capabilities);
}
}