Multiple choice technology testing

In QTP which method is used to retrieve data from HTML TABLE?

  1. GetCellData (Row,Col);

  2. GetRowValue (Rowid,Colname);

  3. GetData (Row,Col);

  4. GetCellValue (Row,Col);

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

In QTP (QuickTest Pro), the GetCellData(Row, Col) method retrieves data from an HTML table cell by specifying row and column indices. The other options (GetRowValue, GetData, GetCellValue) are not standard QTP methods for table data retrieval. Understanding the correct method is essential for web table testing and validation.