Package com.hp.lft.sdk.sap.ui5
Interface Table
- All Superinterfaces:
- Clickable,- LocationInfoProvider,- SupportDragAndDrop,- SupportsNativeObject,- TableBase<TableRow>,- TestObject,- TestObjectDescriber,- VisibleProvider,- WaitUntilVisibleProvider,- WebElement,- WebTestObject,- WebTestObjectDescriber
An SAPUI5 table object.
 Note: Row-related methods always refer only to visible rows.
- 
Method SummaryModifier and TypeMethodDescriptionvoiddeleteRow(int... rowIndices) Deletes the specified rows in the table (by index).voidDeletes the specified rows in the table.voidDeselects all rows in the table.voiddeselectRow(int... rowIndices) Deselects the specified rows in the table (by index).voiddeselectRow(TableRow... rows) Deselects the specified rows in the table.Returns a cell specified by row index and column identifier.Returns theControlTypeof the test object.Returns the functionality provided byDesktopTableBehavior.Returns the functionality provided byMobileTableBehavior.getRow(int rowIndex) Returns the index of the specifiedTableRowrow.Returns a list of all selectedTableRowrows in the table.Returns a list of the visibleTableRowrows in the current page.voidmore()Clicks the More button in the expandable table.voidSelects all rows in the table.voidselectCell(int row, int col) Selects the specified cell in the table (by row and column).voidselectCell(int row, String colName) Selects the specified cell in the table (by row and column name).voidselectRow(int... rowIndices) Selects the specified rows in the table (by index).voidSelects the specified rows in the table.Methods inherited from interface com.hp.lft.sdk.LocationInfoProvidergetAbsoluteLocation, getLocation, getSizeMethods inherited from interface com.hp.lft.sdk.SupportDragAndDropdragAndDropOn, dragAndDropOnMethods inherited from interface com.hp.lft.sdk.SupportsNativeObjectgetNativeObjectMethods inherited from interface com.hp.lft.sdk.web.TableBasefindRowWithCellText, findRowWithCellText, findRowWithCellTextInColumn, findRowWithCellTextInColumn, getBorder, getColumnHeaders, getRowsMethods inherited from interface com.hp.lft.sdk.TestObjectcallFTMethod, callFTMethod, exists, exists, findChildren, getDescription, getDisplayName, getParent, getSnapshot, getTextLocations, getTextLocations, getVisibleText, getVisibleText, highlight, highlightMatches, setDescription, setDisplayName, verifyImageExists, verifyImageExists, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, waitUntilExists, waitUntilExistsMethods inherited from interface com.hp.lft.sdk.TestObjectDescriberdescribeMethods inherited from interface com.hp.lft.sdk.WaitUntilVisibleProviderwaitUntilVisible, waitUntilVisibleMethods inherited from interface com.hp.lft.sdk.web.WebElementdoubleClick, doubleClick, fireEvent, getAccessibilityName, getCSSSelector, getRole, getXPath, hoverTap, hoverTap, longPress, longPress, pan, pan, pinch, pinch, swipe, swipeMethods inherited from interface com.hp.lft.sdk.web.WebTestObjectgetAttribute, getAttributes, getClassName, getComputedStyle, getComputedStyles, getId, getInnerHTML, getInnerText, getName, getOuterHTML, getOuterText, getTagName, getTitle, isVisibleMethods inherited from interface com.hp.lft.sdk.web.WebTestObjectDescriberdescribe, describe
- 
Method Details- 
getControlTypeReturns theControlTypeof the test object.- Returns:
- The control type of the test object, or Unknownif indeterminate.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getDesktopReturns the functionality provided byDesktopTableBehavior.- Returns:
- The functionality provided by DesktopTableBehavior.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getMobileReturns the functionality provided byMobileTableBehavior.- Returns:
- The functionality provided by MobileTableBehavior.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getVisibleRowsReturns a list of the visibleTableRowrows in the current page.- Returns:
- the visible TableRowrows in the current page.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getSelectedRowsReturns a list of all selectedTableRowrows in the table.- Returns:
- A list of all selected TableRowrows in the table.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectCellSelects the specified cell in the table (by row and column).- Parameters:
- row- the row number of the cell to select (1-based).
- col- the column number of the cell to select (1-based).
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectCellSelects the specified cell in the table (by row and column name).- Parameters:
- row- the row number of the cell to select (1-based).
- colName- the column name of the cell to select.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectRowSelects the specified rows in the table (by index).- Parameters:
- rowIndices- the indices of the rows to select (1-based).
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectRowSelects the specified rows in the table.- Parameters:
- rows- the- TableRowrows to select.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
selectAllRowsSelects all rows in the table.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
deselectRowDeselects the specified rows in the table (by index).- Parameters:
- rowIndices- indices of the rows to deselect (1-based).
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
deselectRowDeselects the specified rows in the table.- Parameters:
- rows- the- TableRowrows to deselect.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
deselectAllRowsDeselects all rows in the table.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
deleteRowDeletes the specified rows in the table (by index).- Parameters:
- rowIndices- indices of the rows to delete (1-based).
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
deleteRowDeletes the specified rows in the table.- Parameters:
- rows- the- TableRowrows to delete.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getCellReturns a cell specified by row index and column identifier.- Parameters:
- row- 0-based row index.
- columnIdentifier- 0-based index or column name.
- Returns:
- the TableCell
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
moreClicks the More button in the expandable table.- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getRowReturns the index of the specifiedTableRowrow.- Parameters:
- rowIndex- the index of the row to return (1-based).
- Returns:
- the index of the specified row.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
 
-