Method GetCellText
Gets text from specific table cellUsage
Function GetCellText(
Integer Row,
Integer Column,
Boolean Report [Optional]
)
Parameters
Row
Type: Integer
Table row number
Column
Type: Integer
Table column number
Report (optional)
Type: Boolean
Default Value: False
Generate report for this step
Returns
Cell text, or empty String if cell was not found
Example
VBScript
msgbox Application("Demo").View("DemoView").Object("DemoObject").Table("DemoTable").GetCellText(3, 3)
JavaScript
alert(Application("Demo").View("DemoView").Object("DemoObject").Table("DemoTable").GetCellText(3, 3));
Comment
Get text from cell on row 3 and column 3