Custom
Last updated
Last updated
Custom Object can be used in the following scenarios:
Objects that are dynamic in the AUT (either position/visible text changes during execution).
If object-specific keywords are not supported for the operations.
The Custom object does not require scraping. These keywords can be used for all valid HTML tags (Textbox, Button, Link, Image, Div, Span..). User should provide the appropriate tag name in the input: "Object Type_Input".
The "verifyExists" step is required before using @custom functionality. (This indicates the starting point for execution of custom keywords until it encounters the next verifyExists keyword).
Input Syntax: <Object Type_Input>; <Visible Text>; <index>
Note:
If visible text is unique, then the index should be 0 (default index). (For example: link;Click Next;0) This performs an action on the link with the unique visible text "Click Next".
In AUT, if multiple matches are present for the visible text or the visible text is not given in the input, then the user should appropriately provide index numbers.
Ex 1: link;Next;2- This performs the action on the 3rd link from the reference object with the visible text "Next".
Ex 2: link;;2- This performs the action on the 3rd link from the reference object.
Input Syntax Table
Description: This keyword or action instructs Avo Assure Client to perform a “click” action on the object as specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the Click operation will be performed on the element, and the execution status “True”/ “False” will be stored in variable {Click}.
Description: This keyword or action instructs Avo Assure Client to perform a “doubleClick” action on the object as specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the DoubleClick 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 fetch the element's text and save the result in the output variable.
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will fetch the element text and store it in variable {ElementText}, and the execution status “True”/ “False” will be stored in variable {Status}.
Description: This keyword or action instructs Avo Assure Client to fetch the object's status and save the result in the output variable.
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will fetch the checkbox status and store it in variable {GetStatus}.
Description: This keyword or action instructs Avo Assure Client to perform the “GetText” operation on the object and save the result in the output variable.
Find the snippet of the keyword below:
In the above example, after the test case debug, the text of the textbox will be fetched and stored in variable {GetText}, and the execution status “True”/ “False” will be stored in variable {status}.
Description: This keyword or action instructs Avo Assure Client to “select” the object specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will select the Radiobutton, and the execution status “Fail”/ “Pass” will be stored in variable {Select}.
Description: This keyword or action instructs Avo Assure Client to select the object based on the index value specified in the input.
Note: Only numerical values are allowed in the input. The index starts with “0, " the first value from the dropdown/list.
Find the snippet of the keyword below:
In the above example, after the test case debugs, the provided index value will be selected, and the execution status “True”/ “False” will be stored in variable {SelectValIndex}.
Description: This keyword or action instructs Avo Assure Client to select the value from the dropdown based on the text provided in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the provided value will be selected, and the execution status “True”/ “False” will be stored in variable {SelectValText}.
Description: This keyword or action instructs Avo Assure Client to set the focus on the element/object specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the provided object will be focused, and the execution status “True”/ “False” will be stored in variable {SetFocus}.
Description: This keyword or action instructs Avo Assure Client to set the text/string on the object specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will set the provided text, and the execution status “Fail”/ “Pass” will be stored in variable {SetText}.
Description: This keyword or action instructs Avo Assure Client to accept an encrypted text and pass the decrypted value into the application.
Find the snippet of the keyword below:
In the above example, after the test case debug, the decrypted text will be printed, and the execution status “Fail”/ “Pass” will be stored in variable {SetSecuretext}.
Description: This keyword or action instructs Avo Assure Client to “unselect” the object specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will unselect the checkbox provided, and the execution status “True”/ “False” will be stored in variable {UnselectChkbx}.
Description: This keyword or action instructs Avo Assure Client to select the object specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will select the checkbox provided, and the execution status “True”/ “False” will be stored in variable {SelectChkBx}.
Description: This keyword or action instructs Avo Assure Client to verify if the element text is the same as that given in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will verify the input text, and the execution status “Fail”/ “Pass” will be stored in variable {VerifyElmntTxt}.
Description: This keyword or action instructs Avo Assure Client to verify whether the object is in the AUT screen.
Find the snippet of the keyword below:
In the above example, after the test case debug, it verifies if the object is present in the AUT screen, and the execution status “True”/ “False” will be stored in variable {VerifyExist}.
Description: This keyword or action instructs Avo Assure Client to place a “Mouse pointer” on the object specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will place the mouse pointer on the object specified in the input, and the execution status “True”/ “False” will be stored in variable {MouseHover}.
Description: This keyword or action instructs Avo Assure Client to verify if the object is hidden in the AUT screen.
Find the snippet of the keyword below:
In the above example, after the test case debug, it verifies if the object is hidden on the AUT screen, and the execution status “True”/ “False” will be stored in variable {VerifyHidden}.
Description: This keyword or action instructs Avo Assure Client to verify if the object is visible in the AUT screen.
Find the snippet of the keyword below:
In the above example, after the test case debug, it verifies if the object is visible on the AUT screen, and the execution status “True”/ “False” will be stored in variable {VerifyVisible}.
Description: This keyword or action instructs Avo Assure Client to get all the values that are present in the dropdown/list.
Find the snippet of the keyword below:
In the above example, after the test case debug, it gets all the values in the element, and the result is stored in variable {GetAllValues}.
Description: This keyword or action instructs Avo Assure Client to verify if all of the input values provided by the user are present in the dropdown/list.
Find the snippet of the keyword below:
In the above example, after the test case debug, it verifies if all the values are present in the element and the execution status “Fail”/ “Pass” is stored in variable {VerifyAllValues}.
Description: This keyword or action instructs Avo Assure Client to select the node in a tree
Find the snippet of the keyword below:
In the above example, after the test case debugs, the operation will select the node, and the result is stored in variable {SelectTreeNode}.
Description: This keyword or action instructs Avo Assure Client to fetch the node name for values provided by the user that are present in the dropdown/list.
Find the snippet of the keyword below:
In the above example, after the test case debug, it fetches the node name and stores it in {GetNodeNameByIndex}, and the execution status “Fail”/ “Pass” is stored in variable {Status}.
Description: This keyword or action instructs Avo Assure Client to accept an encrypted text and send the individual keystrokes to the application’s element specified in the input.
Following is the syntax for performing the operation on a custom object:
Note:
To provide encrypted text as input to the sendSecureFunctionKeys keyword, the user should encrypt the required text using “AES Encryption” from the tool encryption utilities.
Find the snippet of the keyword below, with input specified directly:
In the above example, after the test case debug, the decrypted text will be entered in the custom object specified in the input, and the execution status “Fail”/ “Pass” will be stored in variable {output}.
S.No.
Object Type
Object Type_Input
Visible Text
1
Radiobutton
radio;; <index>
Empty
2
Checkbox
checkbox;; <index>
Empty
3
Dropdown
dropdown; <visibleText>; <index>
Should be the value selected in the dropdown by default/empty. Note: All single selection objects come under dropdown
4
Listbox
listbox; <visibleText>; <index>
Should be the value selected in the list by default/empty. Note: All single selection objects come under list.
5
Table
table;; <index>
Optional
6
Textbox/search, email, password, number, file, textarea
textbox; <visibleText>; <index>
Optional
7
Button, submit, reset
button; <visibleText>; <index>
button name
8
Valid html tags (Eg: span, div)
<tag>; <visibleText>; <index>
Optional
Keyword
Input Syntax
Output Syntax
Supported Input Formats
ClickElement
<Object Type_Input>; <Visible text>; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
doubleClick
<Object Type_Input>; <Visible text>; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
GetElementText
<Object Type_Input>; <Visible text>; <index>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
GetStatus
<Object Type_Input>; <Visible text>; <index>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
GetText
<Object Type_Input>; <Visible text>; <index>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SelectRadioButton
<Object Type_Input>;; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SelectValueByIndex
<Object Type_Input>; <Visible text>; <index>; <keyword Input>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SelectValueByText
<Object Type_Input>; <Visible text>; <index>; <keyword Input>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SetFocus
<Object Type_Input>; <Visible text>; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SetText
<Object Type_Input>; <Visible text>; <index>; <keyword input>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SetSecureText
<Object Type_Input>; <Visible text>; <index>; <Encrypted Text>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
UnselectCheckbox
<Object Type_Input>;; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SelectCheckbox
<Object Type_Input>;; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
VerifyElementText
<Object Type_Input>; <Visible text>; <index>; <keyword input>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
VerifyExists
<Object Type_Input>; <Visible text>; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
MouseHover
<Object Type_Input>; <Visible text>; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
VerifyHidden
<Object Type_Input>; <Visible text>; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
VerifyVisible
<Object Type_Input>; <Visible text>; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getAllValues
<Object Type_Input>; <Visible text>; <index>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
VerifyAllValues
<Object Type_Input>; <Visible text>; <index>; <Input Text>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
SelectTreeNode
<Object Type_Input>; <Visible text>; <index>; <Node path>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
GetNodeNameByIndex
<Object Type_Input>; <Visible text>; <index>; <Node Path (index)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
sendSecureFunctionKeys
<Object Type_Input>; <Visible text>; <index>; <Encrypted Text>
(Optional)
Text
Static values
Dynamic Variables