
com.onevizion.uitest.api.helper.chat.ListboxElementChatMessage 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.helper.chat;
import org.openqa.selenium.WebElement;
public class ListboxElementChatMessage {
//TODO need create AbstractListboxElement
private WebElement webElement;
private String id;
private String text;
private String date;
private String author;
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 getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy