Method ClickCell
Clicks on the first cell that has the input textUsage
Function ClickCell(
Integer Row,
Integer Column
)
Parameters
Row
Type: Integer
Row number
Column
Type: Integer
Column number
Returns
True if operation is successful; otherwise, false
Example
VBScript
row = 3
column = 4
Application("Demo").View("DemoView").Object("WeekDays").Table("Calendar").ClickCell row, column
JavaScript
var row = 3;
var column = 4;
Application("Demo").View("DemoView").Object("WeekDays").Table("Calendar").ClickCell(row, column);
Comment
Click on cell with row 3 and column 4