All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.onevizion.uitest.api.helper.chat.ListboxElementChatMessage Maven / Gradle / Ivy

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