io.github.kgress.scaffold.webelements.table.TableRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework Show documentation
Show all versions of framework Show documentation
Core components for Scaffold
package io.github.kgress.scaffold.webelements.table;
import io.github.kgress.scaffold.webelements.AbstractWebElement;
import org.openqa.selenium.WebElement;
public class TableRow extends AbstractWebElement {
private final int rowIndex;
protected TableRow(WebElement element, int rowIndex) {
super(element);
this.rowIndex = rowIndex;
}
/**
* Get index of table row.
*
* @return - {@code int} - one-based table row index
*/
public int getRowIndex() {
return rowIndex + 1;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy