Skip to content

Table Check Value

timfarr edited this page Jul 21, 2011 · 3 revisions

Table Check Value

Checks a table cell equals a given text value for the specified column on the current selected row in an HTML table. This operation differs from Table Check Value Contains in that the supplied text must match the whole value of the table cell, not just a portion of it.

Usage

[MADCOW:htmlTableReference].table.currentRow.checkValue = [columnName : columnValue, columnName2 : columnValue2]

Examples

searchResultsTable.table.currentRow.checkValue = [country : 'New Zealand'] 
searchResultsTable.table.currentRow.checkValue = [country : 'New Zealand', province : 'Otago']
searchResultsTable.table.currentRow.checkValue = ['column3' : 'New Zealand']
searchResultsTable.table.currentRow.checkValue = ['firstColumn' : 'Unit A']
searchResultsTable.table.currentRow.checkValue = ['lastColumn' : 'Earth']

Clone this wiki locally