
co.verisoft.fw.objectrepository.Locator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Selenium4-Junit5 Show documentation
Show all versions of Selenium4-Junit5 Show documentation
VeriSoft framework for testing web and mobile applications. Selenium Module
package co.verisoft.fw.objectrepository;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.ToString;
import org.jetbrains.annotations.NotNull;
@Getter
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class Locator implements Comparable{
private String type;
private String value;
private int grade;
@Override
public int compareTo(@NotNull Object o) {
return ((Locator) o).getGrade() - this.grade;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy