com.sdl.selenium.web.table.ITable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Testy Show documentation
Show all versions of Testy Show documentation
Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications.
(optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)
The newest version!
package com.sdl.selenium.web.table;
import com.sdl.selenium.web.IWebLocator;
import com.sdl.selenium.web.SearchType;
public interface ITable extends IWebLocator {
/**
* selects (clicks) on a table which contains a certain element
*
* @param searchText the searchText of the table element on which the search is done
* default SearchType is {@link com.sdl.selenium.web.SearchType#EQUALS}
* @return true if selected
*/
boolean rowSelect(String searchText);
/**
* @param searchText searchText
* @param searchTypes searchTypes
* @return true or false
*/
boolean rowSelect(String searchText, SearchType... searchTypes);
/**
* @return row count. -1 if not table not ready to be used or not found
*/
int getCount();
R getRow(int rowIndex);
R getRow(C... byCells);
C getCell(int rowIndex, int columnIndex);
C getCell(String searchElement);
C getCell(String searchElement, SearchType... searchTypes);
C getCell(int columnIndex, C... byRowCells);
C getCell(int columnIndex, String text, C... byRowCells);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy