com.saucelabs.visual.CheckOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
Java library to interact with Sauce Visual
package com.saucelabs.visual;
import com.saucelabs.visual.graphql.type.DiffingOptionsIn;
import com.saucelabs.visual.model.DiffingFlag;
import com.saucelabs.visual.model.FullPageScreenshotConfig;
import com.saucelabs.visual.model.IgnoreRegion;
import com.saucelabs.visual.model.VisualRegion;
import java.util.ArrayList;
import java.util.EnumSet;
import java.util.List;
import org.openqa.selenium.WebElement;
public class CheckOptions {
public enum DiffingMethod {
SIMPLE,
EXPERIMENTAL,
BALANCED,
}
public CheckOptions() {}
public CheckOptions(
List ignoreElements,
List ignoreRegions,
List regions,
String testName,
String suiteName,
DiffingMethod diffingMethod,
DiffingOptionsIn diffingOptions,
Boolean captureDom,
String clipSelector,
WebElement clipElement,
FullPageScreenshotConfig fullPageScreenshotConfig) {
this.ignoreElements = ignoreElements;
this.ignoreRegions = ignoreRegions;
this.regions = regions;
this.testName = testName;
this.suiteName = suiteName;
this.diffingMethod = diffingMethod;
this.captureDom = captureDom;
this.clipSelector = clipSelector;
this.clipElement = clipElement;
this.fullPageScreenshotConfig = fullPageScreenshotConfig;
this.diffingOptions = diffingOptions;
}
private List ignoreElements = new ArrayList<>();
private List ignoreRegions = new ArrayList<>();
private List regions = new ArrayList<>();
private String testName;
private String suiteName;
private DiffingMethod diffingMethod;
private DiffingOptionsIn diffingOptions;
private Boolean captureDom;
private String clipSelector;
private WebElement clipElement;
private FullPageScreenshotConfig fullPageScreenshotConfig;
public static class Builder {
private List ignoreElements = new ArrayList<>();
private List ignoreRegions = new ArrayList<>();
private List regions = new ArrayList<>();
private String testName;
private String suiteName;
private DiffingMethod diffingMethod;
private DiffingOptionsIn diffingOptions;
private Boolean captureDom;
private String clipSelector;
private WebElement clipElement;
private FullPageScreenshotConfig fullPageScreenshotConfig;
public Builder withIgnoreElements(List ignoreElements) {
this.ignoreElements = ignoreElements;
return this;
}
public Builder withIgnoreRegions(List ignoreRegions) {
this.ignoreRegions = ignoreRegions;
return this;
}
public Builder withTestName(String testName) {
this.testName = testName;
return this;
}
public Builder withSuiteName(String suiteName) {
this.suiteName = suiteName;
return this;
}
public Builder withDiffingMethod(DiffingMethod diffingMethod) {
this.diffingMethod = diffingMethod;
return this;
}
public Builder withCaptureDom(Boolean captureDom) {
this.captureDom = captureDom;
return this;
}
public Builder withClipSelector(String clipSelector) {
this.clipSelector = clipSelector;
return this;
}
public Builder withFullPageConfig(FullPageScreenshotConfig fullPageScreenshotConfig) {
this.fullPageScreenshotConfig = fullPageScreenshotConfig;
return this;
}
public Builder withClipElement(WebElement clipElement) {
this.clipElement = clipElement;
return this;
}
public Builder disableOnly(EnumSet flags) {
this.diffingOptions = new DiffingOptionsIn();
DiffingFlag.setAll(this.diffingOptions, true);
for (DiffingFlag f : flags) f.apply(this.diffingOptions, false);
return this;
}
public Builder enableOnly(EnumSet flags) {
this.diffingOptions = new DiffingOptionsIn();
DiffingFlag.setAll(this.diffingOptions, false);
for (DiffingFlag f : flags) f.apply(this.diffingOptions, true);
return this;
}
public Builder enableOnly(EnumSet flags, WebElement element) {
this.regions.add(VisualRegion.ignoreChangesFor(element).except(flags));
return this;
}
public Builder disableOnly(EnumSet flags, WebElement element) {
this.regions.add(VisualRegion.detectChangesFor(element).except(flags));
return this;
}
public CheckOptions build() {
return new CheckOptions(
ignoreElements,
ignoreRegions,
regions,
testName,
suiteName,
diffingMethod,
diffingOptions,
captureDom,
clipSelector,
clipElement,
fullPageScreenshotConfig);
}
}
public List getIgnoreElements() {
return ignoreElements;
}
public void setIgnoreElements(List ignoreElements) {
this.ignoreElements = ignoreElements;
}
public List getIgnoreRegions() {
return ignoreRegions;
}
public void setIgnoreRegions(List ignoreRegions) {
this.ignoreRegions = ignoreRegions;
}
public String getTestName() {
return testName;
}
public void setTestName(String testName) {
this.testName = testName;
}
public List getRegions() {
return regions;
}
public void setRegions(List regions) {
this.regions = regions;
}
public String getSuiteName() {
return suiteName;
}
public void setSuiteName(String suiteName) {
this.suiteName = suiteName;
}
public void setDiffingMethod(DiffingMethod diffingMethod) {
this.diffingMethod = diffingMethod;
}
public DiffingMethod getDiffingMethod() {
return diffingMethod;
}
public DiffingOptionsIn getDiffingOptions() {
return diffingOptions;
}
public void setCaptureDom(Boolean captureDom) {
this.captureDom = captureDom;
}
public Boolean getCaptureDom() {
return captureDom;
}
public String getClipSelector() {
return clipSelector;
}
public void setClipSelector(String clipSelector) {
this.clipSelector = clipSelector;
}
public WebElement getClipElement() {
return clipElement;
}
public void setClipElement(WebElement clipElement) {
this.clipElement = clipElement;
}
public FullPageScreenshotConfig getFullPageScreenshotConfig() {
return fullPageScreenshotConfig;
}
public void enableFullPageScreenshots(FullPageScreenshotConfig fullPageScreenshotConfig) {
this.fullPageScreenshotConfig = fullPageScreenshotConfig;
}
public void enableFullPageScreenshots() {
this.fullPageScreenshotConfig = new FullPageScreenshotConfig.Builder().build();
}
}