website.automate.waml.io.model.action.ParentCriteria Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waml-io Show documentation
Show all versions of waml-io Show documentation
(De)Serializer of the web automation markup language (WAML) for Java
package website.automate.waml.io.model.action;
public class ParentCriteria {
private String selector;
private String text;
private String value;
public String getSelector() {
return selector;
}
public void setSelector(String selector) {
this.selector = selector;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}