
com.onevizion.uitest.api.vo.ListboxElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-test-api Show documentation
Show all versions of ui-test-api Show documentation
An API for easily write tests for OneVizion platform
The newest version!
package com.onevizion.uitest.api.vo;
import org.openqa.selenium.WebElement;
public class ListboxElement {
private WebElement webElement;
private String id;
private String label;
public WebElement getWebElement() {
return webElement;
}
public void setWebElement(WebElement webElement) {
this.webElement = webElement;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy