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

com.vaadin.flow.component.board.testbench.RowElement Maven / Gradle / Ivy

There is a newer version: 24.6.0
Show newest version
package com.vaadin.flow.component.board.testbench;

import java.util.List;

import com.vaadin.testbench.TestBenchElement;
import com.vaadin.testbench.elementsbase.Element;

/**
 * This class represents one row inside the Vaadin Board.
 *
 * @author Vaadin Ltd.
 */
@Element("vaadin-board-row")
public class RowElement extends TestBenchElement {

    /**
     * Returns all the immediate child elements of this row.
     *
     * @return all immediate child elements of this row
     */
    public List getChildren() {
        return getPropertyElements("children");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy