com.applitools.ICheckSettingsInternal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-core-java5 Show documentation
Show all versions of eyes-sdk-core-java5 Show documentation
Applitools Eyes SDK base for Java
package com.applitools;
import com.applitools.eyes.MatchLevel;
import com.applitools.eyes.Region;
import com.applitools.eyes.visualgrid.model.VisualGridOption;
import java.util.List;
import java.util.Map;
public interface ICheckSettingsInternal {
Region getTargetRegion();
Integer getTimeout();
MatchLevel getMatchLevel();
String getName();
Map getScriptHooks();
String getSizeMode();
Boolean isSendDom();
Boolean isUseDom();
ICheckSettingsInternal clone();
Boolean isStitchContent();
Boolean isIgnoreDisplacements();
List getVisualGridOptions();
Boolean isDisableBrowserFetching();
ICheckSettings setDisableBrowserFetching(Boolean disableBrowserFetching);
}