io.github.kgress.scaffold.webelements.table.TableHeader 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 TableHeader extends AbstractWebElement {
private final int columnIndex;
public TableHeader(WebElement element, int columnIndex) {
super(element);
this.columnIndex = columnIndex;
}
/**
* Get index of specified table header.
*
* @return - {@code int} - one-based table header index
*/
public int getColumnIndex() {
return this.columnIndex + 1;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy