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

Method TypeCell

Types into the cell with the matched input text

Usage

Function TypeCell( 
        Integer Row,
        Integer Column,
        String TextToType
)

Parameters

Row

Type: Integer

Row number

Column

Type: Integer

Column number

TextToType

Type: String

The text to type into the cell

Returns

True if operation is successful; otherwise, false

Example

VBScript

emailFieldRow = "Email"
tableRowNumber = Application("Demo").View("DemoView").Table("DemoTable").FindRow(emailFieldRow)
Application("Demo").View("DemoView").Table("DemoTable").TypeCell tableRowNumber, 2, "[email protected]"

JavaScript

var emailFieldRow = "Email";
var tableRowNumber = Application("Demo").View("DemoView").Table("DemoTable").FindRow(emailFieldRow);
Application("Demo").View("DemoView").Table("DemoTable").TypeCell(tableRowNumber, 2, "[email protected]");

Documentation Categories

ZAPTEST

FARM

LOAD