com.applitools.eyes.selenium.SeleniumRunnerSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-selenium-java5 Show documentation
Show all versions of eyes-selenium-java5 Show documentation
Applitools Eyes SDK for Selenium Java WebDriver
package com.applitools.eyes.selenium;
import com.applitools.eyes.universal.settings.EnvironmentSettings;
import com.applitools.eyes.universal.settings.RunnerSettings;
import com.applitools.utils.EnvironmentVersions;
public class SeleniumRunnerSettings extends RunnerSettings {
private final static String baseAgentId = "eyes.selenium.java";
@Override
public String getBaseAgentId() {
return baseAgentId;
}
@Override
public EnvironmentSettings getEnvironment() {
return new EnvironmentSettings() {
@Override
public EnvironmentVersions getVersions() {
return new SeleniumEnvironmentVersions();
}
};
}
}