Button
Last updated
Last updated
Description: This keyword or action instructs Avo Assure Client to perform click on the specified button.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
click | NA | (Optional) | NA |
Note: The “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, the Click operation will be performed on the button, and the execution status “True”/ “False” will be stored in variable {Click}.
Description: This keyword or action instructs Avo Assure Client to perform click on the specified button.
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, the Press operation will be performed on the button, and the execution status “True”/ “False” will be stored in variable {Press}.
Description: This keyword or action instructs Avo Assure Client to perform a double-click on the specified button.
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, the Double Click operation will be performed on the button, and the execution status “True”/ “False” will be stored in variable {doubleClick}.
Description: This keyword or action instructs Avo Assure Client to upload the specified files.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
uploadFile | <filepath>; <file name>; <wait (in seconds)> | (Optional) |
|
Note:
The upload file works correctly only if the AUT is in the foreground.
If the ‘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}.
Description: This keyword or action instructs Avo Assure Client to fetch the button name.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
getButtonName | 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 button name and store it in variable {btn_name}. The execution status “True”/ “False” will be stored in variable {BtnStatus}.
Description: This keyword or action instructs Avo Assure Client to check the name present on the button.
Keyword | Input Syntax | Output Syntax | Supported Input Formats |
verifyButtonName | <Input Text> | (Optional) |
|
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will verify the button name, and the execution status “True”/ “False” will be stored in variable {VerifyButtonName}.