Multiple choice technology testing

In custom data binding for a web test, what is the method used to return a set of name, Value pairs. The name is the column name and the value is the column value. This will get the current row of the dataset and then advance the current position counter

  1. GetRecord(n)

  2. GetNextRow()

  3. GetDataset(n)

  4. GetNextRecord()

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

GetNextRow() is the method that retrieves the current row's data as name-value pairs and advances the internal cursor. The description precisely matches data-driven testing patterns where you iterate through datasets - getting current data and moving to the next row in one operation. GetRecord() and GetDataset() would accept parameters, while GetNextRecord() is not the standard naming.