Method GetRowText
Gets the text from table or list by row number. Row text is separated by new line and '|' symbol for each column in the tableUsage
Function GetRowText(
Integer Row,
Boolean Report [Optional]
)
Parameters
Row
Type: Integer
Row Number
Report (optional)
Type: Boolean
Default Value: False
Generate report for this step
Returns
Row text
Example
VBScript
rowNumber = Application("Demo").View("DemoView").Table("DemoTable").FindRow("Name")
msgbox Application("Demo").View("DemoView").Object("DemoTable").GetRowText(rowNumber)
JavaScript
var rowNumber = Application("Demo").View("DemoView").Table("DemoTable").FindRow("Name");
alert(Application("Demo").View("DemoView").Object("DemoTable").GetRowText(rowNumber));
Comment
Get text from row with number 3 and add step to report result