com.applitools.eyes.visualgridclient.model.VisualGridSelector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-common-java3 Show documentation
Show all versions of eyes-common-java3 Show documentation
Common code for Applitools Eyes Java SDK projects
package com.applitools.eyes.visualgridclient.model;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
public class VisualGridSelector {
private String selector;
@JsonIgnore
private Object category;
public VisualGridSelector(String selector, Object category) {
this.selector = selector;
this.category = category;
}
public String getSelector() {
return selector;
}
@JsonProperty("type")
public String getType(){
return "xpath";
}
@JsonIgnore
public Object getCategory() {
return category;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy