Package com.hp.lft.sdk.web
Interface UiGrid
- All Superinterfaces:
- Clickable,- GridBase<TableRow>,- LocationInfoProvider,- SupportDragAndDrop,- SupportsNativeObject,- TestObject,- TestObjectDescriber,- VisibleProvider,- WaitUntilVisibleProvider,- WebElement,- WebTestObject,- WebTestObjectDescriber
A UiGrid table.
- 
Method SummaryModifier and TypeMethodDescriptionfindRowWithCellText(String text) Finds the first row with this text.findRowWithCellText(String text, int startFromRow) Finds the first row with the specified text.voidscrollToRow(int row) Scrolls to a specified row, as defined by the row's number.voidscrollToRow(TableRow row) Scrolls to a specified row, as defined by the rowTableRow.Methods inherited from interface com.hp.lft.sdk.web.GridBasefindRowWithCellTextInColumn, findRowWithCellTextInColumn, findRowWithCellTextInColumn, findRowWithCellTextInColumn, findRowWithCellTextInColumn, getColumnHeaders, getRows, selectCell, selectCellMethods 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.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- 
findRowWithCellTextFinds the first row with this text.- Parameters:
- text- the text to find.
- Returns:
- the first row with this text.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
findRowWithCellTextFinds the first row with the specified text.- Parameters:
- text- the text to find.
- startFromRow- index from which to start the search.
- Returns:
- the requested row, or null if none exists.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
scrollToRowScrolls to a specified row, as defined by the row's number.- Parameters:
- row- 0-based row number
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
scrollToRowScrolls to a specified row, as defined by the rowTableRow.- Parameters:
- row- the- TableRowobject to scroll to.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
 
-