HTML table column headings are not considered to be table data, and therefore are not returned by
GetRowRangeText().
Silk Test Classic always regards the first row as the column name, not as the first row. For example:
column name 1
|
column name 2
|
column Name 3
|
row 1
|
row 1
|
row 1
|
row 2
|
row 2
|
row 2
|
row 3
|
row 3
|
row 3
|
By default, blank cells are ignored. If you are using the DOM extension and want to return blank cells as empty strings (""), set the
RowTextIncludesEmptyCells option to
TRUE. You can set this option globally in the Options section of the
domex.ini file or on a table-by-table basis in your script file through
BrowserPage, as shown in the following code sample:
SetUserOption("RowTextIncludesEmptyCells", TRUE)