Link

Keyword: CLICK

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

Keyword

Input Syntax

Output Syntax

Supported Input Formats

click

NA

(Optional)

NA

Note: “Press” keyword can also be used as an alternative to “Click”.

Find the snippet of the keyword below:

In the above example, after the test case debug, click operation will be performed on the link and the execution status “Fail”/ “Pass” will be stored in variable {click}.

Keyword: PRESS

Description: This keyword or action instructs ICE to click operation on the specified link.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

press

NA

(Optional)

NA

Note: This keyword is useful where mouse down press operation is involved.

Find the snippet of the keyword below:

In the above example, after the test case debug, press operation will be performed on the link and the execution status “Fail”/ “Pass” will be stored in variable {Press}.

Keyword: DOUBLECLICK

Description: This keyword or action instructs ICE to perform double click on the specified link.

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, double click operation will be performed on the link and the execution status “Fail”/ “Pass” will be stored in variable {doubleClick}.

Keyword: UPLOADFILE

Description: This keyword or action instructs ICE to upload a file present in a specific path in the local system, to an application.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

uploadFile

<file path>; <file name>; <wait(in seconds)

(Optional)

  • Text

  • Static Values

  • Dynamic Variables

Note:

  • The upload file works correctly only if the AUT is in the foreground.

  • If ‘wait (in seconds)’ input is specified, then the action will be performed after the duration of the specified wait time.

Find the snippet of the keyword below:

In the above example, after the test case debug, it uploads the specified file and the execution status “True”/ “False” will be stored in variable {upload}.

Keyword: GETLINKTEXT

Description: This keyword or action instructs ICE to fetch the text of the link and save the result in the output variable.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

getLinkText

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 link text andstore it in variable {GetLink} and the execution status “True”/ “False” will be stored in variable {LinkStatus}.

Keyword: VERIFYLINKTEXT

Description: This keyword or action instructs ICE to verify if the link text is the same as that given in the input.

Keyword

Input Syntax

Output Syntax

Supported Input Formats

verifyLinkText

<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 link text and the execution status “True”/ “False” will be stored in variable {VerifyLnkTxt}.

Last updated