Get your 6-month No-Cost Opt-Out offer for Unlimited software automation!

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 table

Usage

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));

Documentation Categories

ZAPTEST

FARM

LOAD