Common Operations

Keyword: CLICK

Description: This keyword or action instructs ICE to perform mouse left click on the object selected.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

Click

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, ICE will click the specified object. If output variable is provided for execution status, “True”/ “False” will be stored in it.

Keyword: DOUBLECLICK

Description: This keyword or action instructs ICE to perform mouse left double click on the object selected.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

DoubleClick

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, ICE will double click the specified object. If output variable is provided for execution status, “True”/ “False” will be stored in it.

Keyword: MOUSEHOVER

Description: This keyword or action instructs ICE to hover mouse pointer on the object selected.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

MouseHover

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, ICE will hover the mouse pointer on the specified object. If output variable is provided for execution status, “True”/ “False” will be stored in it.

Keyword: SETFOCUS

Description: This keyword or action instructs ICE to set the focus on the object selected.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

SetFocus

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, ICE will set the focus on the specified object. If output variable is provided for execution status, “True”/ “False” will be stored in it.

Keyword: VERIFYDISABLED

Description: This keyword or action instructs ICE to verify if the selected objects is disabled.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

VerifyDisabled

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, ICE will verify if the specified object is disabled. If output variable is provided for execution status, “True”/ “False” will be stored in it.

Keyword: VERIFYENABLED

Description: This keyword or action instructs ICE to verify if the object selected is enabled.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

VerifyEnabled

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, ICE will verify if the specified object is enabled. If output variable is provided for execution status, “True”/ “False” will be stored in it.

Keyword: VERIFYEXISTS

Description: This keyword or action instructs ICE to verify the existence of the object on the page.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

VerifyExists

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, ICE will verify the existence of the specified object. If output variable is provided for execution status, “True”/ “False” will be stored in it.

Keyword: VERIFYHIDDEN

Description: This keyword or action instructs ICE to verify if the object is hidden in the page of AUT.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyHidden

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, ICE will verify if the specified object is hidden and the execution status, “True”/ “False” will be stored in variable {hidden}.

Keyword: VERIFYVISIBLE

Description: This keyword or action instructs ICE to verify if the object is visible in the page of AUT.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyVisible

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, ICE will verify if the specified object is visible and the execution status, “True”/ “False” will be stored in variable {visible}.

Keyword: GETTOOLTIPTEXT

Description: This keyword or action instructs ICE to fetch title (tooltip) present on the object and save the results in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getToolTipText

NA

{Variable}; {Status}

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, the operation will fetch the tooltip text and store it in variable {tooltip} and the execution status, “True”/ “False” will be stored in variable {tooltipStatus}.

Keyword: VERIFYTOOLTIPTEXT

Description: This keyword or action instructs ICE to verify if the title (tooltip) present on the object is the same as that specified in the input.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyToolTipText

<Input Text>

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Find the snippet of the keyword below:

In the above example, after the test case debug, the operation will verify the tooltip text and the execution status, “True”/ “False” will be stored in variable {verifyTool}.

Keyword: RIGHTCLICK

Description: This keyword or action instructs ICE to perform right click on the specified object.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

rightClick

NA

(Optional)

NA

Find the snippet of the keyword below:

In the above example, after the test case debug, it will perform right-click on the object and the execution status, “True”/ “False” will be stored in variable {rightClick}.

Last updated