FindWebGridRow |
Top Previous Next |
×V5.0Ø
Syntax - FindWebGridRow <Variable Name> <Element Identifier> <SearchCriteria> Where: <Variable Name> is the user defined name that is assigned to the variable. <Element Identifier> is a valid web grid identifier in Soarian Financials. <SearchCriteria> is a pipe delimited, literal string containing search values for a grid row.
Description: This command searches a grid cell in Soarian Financials. These grid rows have to be visible to be clicked. The <SearchCriteria> is a pipe delimited string that determines the desired row. There can be multiple values in the <SearchCriteria>. Wildcard (*) searching is supported in the <SearchCriteria>. Each pipe separates a cell within the row. If the row is found and is not visible in the grid view, the command will scroll to make it visible and assign the row number to the variable name. If the row is not found, the variable will be assigned a value of 0.
Soarian SmartUI: Yes Chrome: No
Sample 1: The following statement finds the row with the values '94%' in column 1 and 'xxx-xx-5666' in column 9, assigns the grid row position to the RowNumber variable and scrolls if necessary to make it visible. The RowNumber variable is used in the GetWebElementFromContainer command to locate the element so that it can be clicked. FindWebGridRow RowNumber "Browser=*Soarian*:sframeInner->wellFrame->tabWell*:DivSection,id=ctlWorklist_Grid,INDEX=1" "94%||||||||xxx-xx-5666" GetWebElementFromContainer @Link GridCell 1 "Browser=*Soarian*:sframeInner->wellFrame->tabWell*:DivSection,id=ctlWorklist_Grid,INDEX=1" RowNumber ClickWebElement @Link
See Also: |