Method ClickRow
1 of 2 declarations
Clicks on a specific row number
Usage
Function ClickRow(
Integer Row
)
Step

ClickRow
3
Integer Row
Parameters
Row
Type: Integer
Row number to click on (starts with 1)
Returns
No return value
Example
VBScript
row = 3
Application("Demo").View("DemoView").Object("WeekDays").Table("Calendar").ClickRow row
JavaScript
var row = 3;
Application("Demo").View("DemoView").Object("WeekDays").Table("Calendar").ClickRow(row);

Step

ClickRow
3
Method ClickRow
2 of 2 declarations
Clicks on the first row that has the specified text
Usage
Function ClickRow(
String RowText
)
Step

ClickRow
Row text
String RowText
Parameters
RowText
Type: String
The entire text that appears in the row
Returns
No return value
Example
VBScript
Application("Demo").View("DemoView").Object("WeekDays").Table("Calendar").ClickRow "Sample text from row"
JavaScript
Application("Demo").View("DemoView").Object("WeekDays").Table("Calendar").ClickRow("Sample text from row");
Comment
Click on row with text "Name"

Step

ClickRow
Name
Comment
Click on row with number 3