@Custom
Last updated
Last updated
Custom Object can be used in the following scenarios:
Objects which are dynamic in the web page (either position/visible text changes during execution).
If object-specific keywords are not supported for the operations.
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".
"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>; <abs (optional)>
Note:
If visible text is unique then the index should be 0 (default index). (For example: link;Click Next;0) This performs the action on the link that has unique visible text "Click Next".
In AUT, if there are multiple matches present for the visible text or if the visible text is not given in the input, then the user should provide index numbers appropriately.
Ex 1: link;Next;2- This performs the action on the 3rd link from the reference object that has the visible text "Next".
Ex 2: link;;2- This performs the action on the 3rd link from the reference object.
In AUT, if there are multiple occurrences of the same text (For example: if input visible text given is 1, and there are other text fields containing 11, 21, 31, and so on.) and the need is to find the exact text specified, then the user has to provide an additional option of ‘abs’ as the last argument.
Ex: link;1;0;abs
Button;Submit Form;0;abs
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 {GetElmntTxt}, and the execution status “True”/ “False” will be stored in variable {Elestatus}.
Description: This keyword or action instructs Avo Assure Client to fetch a specific object and use the fetched object as the reference element for subsequent custom test steps.
Find the snippet of the keyword below:
In the above example, the operation will fetch the specified Object after the test case debug. This object can be used as a reference for all other custom keywords by specifying the last argument in the input as {{NewRefObject}}. For example, the GetStatus keyword’s input should be as follows if the new reference object must be used: <Object_type_Input>; <Visible_text>; <Index>; {{NewRefObject}}
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 {Status}.
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 debugs, the text of the textbox will be fetched and stored in variable {gettext}, and the execution status “True”/ “False” will be stored in variable {gtstatus}.
Description: This keyword or action instructs Avo Assure Client to perform the “Right Click” action on the object specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the right-click operation will be performed on the element, and the execution status “Fail”/ “Pass” will be stored in variable {rightClick}.
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 {radio}.
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,” which will be the first value from the dropdown/list.
Find the snippet of the keyword below:
In the above example, after the test case debug, the provided index_value will be selected, and the execution status “True”/ “False” will be stored in variable {listbox}.
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 debugs, the provided value will be selected, and the execution status “True”/ “False” will be stored in variable {listbox1}.
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 {focus}.
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 {secure}.
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 {unchecked}.
Description: This keyword or action instructs Avo Assure Client to perform a “click” action 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 select the checkbox provided, and the execution status “True”/ “False” will be stored in variable {Checked}.
Description: This keyword or action instructs ICE to verify if the object is not present on the web page of the AUT.
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will verify if the object is not present on the web page of AUT, and the execution status “True”/ “False” will be stored in variable {Does}.
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 {verify}.
Description: This keyword or action instructs Avo Assure Client to verify if the object is present on the web page of AUT.
Find the snippet of the keyword below:
In the above example, after the test case debug, it verifies if the object is present on the web page of AUT, and the execution status “True”/ “False” will be stored in variable {exists}.
Description: This keyword or action instructs Avo Assure Client to perform the “drag” action on the objects specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, it performs the “drag” action on the objects specified in input, and the execution status “True”/ “False” will be stored in variable {drag}.
Description: This keyword or action instructs Avo Assure Client to perform the “drop” action on the objects specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, it performs the “drop” action on the objects specified in input, and the execution status “True”/ “False” will be stored in variable {drop}.
Description: This keyword or action instructs Avo Assure Client to fetch the title (tooltip) present on the objects 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 tooltip text and store it in variable {tool}.
Description: This keyword or action instructs Avo Assure Client to verify the title (tooltip) present on the objects specified in the input.
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 “Fail”/ “Pass” will be stored in variable {verifyTool}.
Description: This keyword or action instructs Avo Assure Client to place the “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 send the keyboard action/operation on the object specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the “enter” operation will be performed on the object link, and the execution status “True”/ “False” will be stored in variable {key}.
Description: This keyword or action instructs Avo Assure Client to send the string values individually 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 {send}.
Description: This keyword or action instructs Avo Assure Client to perform tab operation from the object.
Find the snippet of the keyword below:
In the above example, after the test case debug, the “tab” operation will be performed on the link, and the execution status “True”/ “False” will be stored in variable {tab}.
Description: This keyword or action instructs Avo Assure Client to verify if the object is hidden on the web page of AUT.
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 web page of AUT, and the execution status “True”/ “False” will be stored in variable {hidden}.
Description: This keyword or action instructs Avo Assure Client to verify if the object is visible on the web page of AUT.
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 web page of AUT, and the execution status “True”/ “False” will be stored in variable {visible}.
Description: This keyword or action instructs Avo Assure Client to wait until the element is visible on the web page. Before making the step fail, this time to wait should be set in config settings using the “Timeout” property.
Find the snippet of the keyword below:
In the above example, after the test case debug, wait until the element is visible on the web page, and the execution status “True”/ “False” will be stored in variable {ElementVisible}.
Description: This keyword or action instructs Avo Assure Client to find the number of occurrences of the object on the web page.
Note: <Object Type_Input>: The appropriate input object type name should be specified in the input field based on the object type.
Find the snippet of the keyword below:
In the above example, after the test case debug, it finds the number of occurrences of the object in the web page, and the result is stored in output variable {a}.
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 {secureValue}.
Description: This keyword or action instructs Avo Assure Client to get all the values in the dropdown/list.
Find the snippet of the keyword below:
In the above example, after the test case debugs, it gets all the values in the list box, and the result is stored in variable {get}.
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 debugs, it verifies if all the values are present in the list box and the execution status “Fail”/ “Pass” is stored in variable {all}.
Description: This keyword or action instructs Avo Assure Client to perform a horizontal scroll operation on the grid’s scrollable section given in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, it will perform the horizontal scroll operation on the grid’s scrollable section given in the input.
Description: This keyword or action instructs Avo Assure Client to perform a vertical scroll operation on the grid’s scrollable section given in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, it will perform the vertical scroll operation on the grid’s scrollable section given in the input.
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}.
Description: This keyword or action instructs Avo Assure Client to click on the object as specified in the input.
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 specified object in the input, and the execution status “True” / “False” will be stored in variable {Click}.
Description: This keyword or action instructs Avo Assure Client to clear the text from the textbox specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, it clears the text from the textbox specified in the input, and the execution status “Fail” / “Pass” will be stored in variable {Clear}.
Description: This keyword or action instructs Avo Assure Client to get the maximum text box length defined by the developer and save the result in the output variable.
Note: This keyword fetches the maximum number of supported characters by the text box, not the user input character length.
Find the snippet of the keyword below:
In the above example, after the test case debug, the maximum length of the textbox will be fetched and stored in variable {len}. The execution status “Fail” / “Pass” will be stored in variable {Status}.
Description: This keyword or action instructs Avo Assure Client to verify the text in the textbox specified in the input against the value provided in the input field.
Find the snippet of the keyword below:
In the above example, after the test case debugs, the text provided will be verified, and the execution status “Fail” / “Pass” will be stored in variable {verify}.
Description: This keyword or action instructs Avo Assure Client to fetch the button name of the button specified in the input.
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 specified in the input.
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}.
Description: This keyword or action instructs Avo Assure Client to fetch the link's text specified in the input 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 link text and store it in variable {GetLink}, and the execution status “True” / “False” will be stored in variable {LnkStatus}.
Description: This keyword or action instructs Avo Assure Client to verify the link text specified in the input against the value provided.
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}.
Description: This keyword or action instructs Avo Assure Client to compare the image on the web page specified in the input against the image present at the path specified.
Note: Supported image formats are “.png”, “.jpeg”, “.jpg”, “.gif”.
Find the snippet of the keyword below:
In the above example, after the test case debug, it compares the image on the web page specified in the input against the image present at the path, and the execution status “True” / “False” will be stored in variable {Img_verifywebImg}.
Description: This keyword or action instructs Avo Assure Client to compare and return the similarity percentage between an image specified in the input against another image whose path is specified.
Note: Supported image formats are “.png”, “.jpeg”, “.jpg”, “.gif”.
Find the snippet of the keyword below:
In the above example, after the test case debug, the image “Android.png” will be compared with the image specified in the input. In the {result} variable, the similarity percentage of the images compared will be returned.
Description: This keyword or action instructs Avo Assure Client to upload a file on the object specified in the input by providing the file path from the local system.
Note:
The keyword “uploadFile” 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 file present in the specified path on the specified object in the input, and the execution status “True” / “False” will be stored in variable {Img_upload}.
Description: This keyword or action instructs Avo Assure Client to drop a file on the object specified in the input by providing the file path in the local system.
Find the snippet of the keyword below:
In the above example, after the test case debug, it drops the specified input file on the specified object in the input, and the execution status “True” / “False” will be stored in variable {dropFile}.
Description: This keyword or action instructs Avo Assure Client to fetch the total number of options present in the dropdown/list specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debugs, the tool fetches the number of values present in the dropdown/list specified in the input and stores it in {cnt}, and the execution status “True” / “False” will be stored in variable {StatusGC}.
Description: This keyword or action instructs Avo Assure Client to fetch the selected value from the dropdown/list specified in the input and save the result in the output variable.
Note: If the value present in the dropdown has space(s) at suffix/prefix, then the user can provide input as “1”, which will trim the spaces.
Find the snippet of the keyword below:
In the above example, after the test case debug, the selected value will be fetched and stored in the variable {sel_txt}. The execution status “True” / “False” will be stored in variable {Status}.
Description: This keyword or action instructs Avo Assure Client to fetch the value of the dropdown/list specified in the input by providing the index and saving the result in the output variable.
Note: Only numerical values are allowed in input. The index starts with “0,” which will be the first value from the list.
Find the snippet of the keyword below:
In the above example, after the test case debug, the value text will be fetched from the provided Index and stored in variable {index_val}. The execution status “True” / “False” will be stored in variable {Status}.
Description: This keyword or action instructs Avo Assure Client to verify the user-provided input count with the total number of options present in the dropdown/list specified in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the count value will be verified, and the execution status “True” / “False” will be stored in variable {VerifyCount}.
Description: This keyword or action instructs Avo Assure Client to compare the user-provided input value with the selected value in the dropdown specified in the input.
Note:
This keyword requires an exact match. Due to browser rendering, the keyword will fail if the value contains trailing/leading spaces.
This keyword will pass only if the input value matches the value selected in the dropdown.
Find the snippet of the keyword below:
In the above example, after the test case debug, the selected value will be verified, and the execution status “True” / “False” will be stored in variable {VerifySelected}.
Description: This keyword or action instructs Avo Assure Client to verify if the input value(s) provided by the user is/are present in the dropdown/list specified in the input.
Note:
This keyword requires an exact match. Due to browser rendering, the keyword will fail if the value contains trailing/leading spaces.
This keyword will pass only if the input value matches the values in the application under test.
If the dropdown/list contains an ‘abs’ value, this value should not be provided as the last argument. Suppose the ‘abs’ value is provided as the last argument in the input. In that case, the ICE will consider this an indication to perform the absolute comparison between the object on AUT and the specified visible text in the input.
Find the snippet of the keyword below:
In the above example, after the test case debug, the Value(s) will be verified, and the execution status “True” / “False” will be stored in variable {VerifyVal}.
Description: This keyword or action instructs Avo Assure Client to fetch all values in the combo box and save the result in the output variable.
Find the snippet of the keyword below:
In the above example, Avo Assure Client will fetch all values in the combo box after the test case debug. The output will be stored in the variable {variable}, and the execution status True/False will be stored in variable {status}.
Description: This keyword or action instructs Avo Assure Client to fetch the total number of options in the combo box.
Find the snippet of the keyword below:
In the above example, Avo Assure Client will fetch the total number of options present in the combo box after the test case debug. The output will be stored in the variable {variable}, and the execution status True/False will be stored in variable {status}.
Description: This keyword or action instructs Avo Assure Client to select the value from the combo box based on the index.
Find the snippet of the keyword below:
In the above example, after the test case debug, the operation will select the value from the combo box based on the index.
Description: This keyword or action instructs Avo Assure Client to select the value from the combo box 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 operation will select the value from the combo box based on the text provided in the input.
S.No.
Object Type
Object Type_Input
Visible Text
1
Radiobutton
radio;; <index>; <abs (optional)>
Empty
2
Checkbox
checkbox;; <index>; <abs (optional)>
Empty
3
Dropdown
dropdown; <visibleText>; <index>; <abs (optional)>
Should be the value selected in the dropdown by default/empty. Note: All single selection objects come under dropdown.
4
Listbox
listbox; <visibleText>; <index>; <abs (optional)>
Should be the value selected in the list by default/empty. Note: All single selection objects come under the list.
5.1
Table cell, Table
tablecell; <visibleText>; <index>; <abs (optional)>
Optional
5.2
Table cell, Table
table;; <index>; <abs (optional)>
Empty
6
Textbox/search, email, password, number, url, file, textarea
textbox; <visibleText>; <index>; <abs (optional)>
Optional
7
Link
link; <visibleText>; <index>; <abs (optional)>
Tool tip/name of the link
8
Image
img; <visibleText>; <index>; <abs (optional)>
Tool tip/optional
9
Button, submit, reset
button; <visibleText>; <index>; <abs (optional)>
Button name
10
Valid html tags (Eg: span, div)
<tag>; <visibleText>; <index>; <abs (optional)>
Optional
11
Grid
grid, <visibleText>, <index>; <abs (optional)>
Empty
Keyword
Input Syntax
Output Syntax
Supported Input Formats
clickElement
<Object Type_Input>; <Visible text>; <index>; <abs(optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
doubleClick
<Object Type_Input>; <Visible text>; <index>; <abs(optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getElementText
<Object Type_Input>; <Visible text>; <index>; <abs(optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getObject
<Object Type_Input>; <Visible text>; <index>; <abs (optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getStatus
<Object Type_Input>; <Visible text>; <index>; <abs(optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getText
<Object Type_Input>; <Visible text>; <index>; <abs(optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
rightClick
<Object Type_Input>; <Visible text>; <index>; <abs(optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
selectRadioButton
<Object Type_Input>; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
selectValueByIndex
<Object Type_Input>; <Visible text>; <index>; <Index Value>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
selectValueByText
<Object Type_Input>; <Visible text>; <index>; <text>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
setFocus
<Object Type_Input>; <Visible text>; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
setText
<Object Type_Input>; <Visible text>; <index>; <value>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
setSecureText
<Object Type_Input>; <Visible text>; <index>; <Encrypted Text>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
unSelectCheckbox
<Object Type_Input>;; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
selectCheckbox
<Object Type_Input>;; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyDoesNotExist
<Object Type_Input>; <Visible text>; <index>; <abs(optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyElementText
<Object Type_Input>; <Visible text>; <index>; <value>; <abs(optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyExists
<Object Type_Input>; <Visible text>; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
drag
<Object Type_Input>; <Visible text>; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
drop
<Object Type_Input>; <Visible text>; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getToolTipText
<Object Type_Input>; <Visible text>; <index>; <abs(optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyToolTipText
<Object Type_Input>; <Visible text>; <index>; <value>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
mouseHover
<Object Type_Input>; <Visible text>; <index>; <abs(optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
sendFunctionKeys
<Object Type_Input>; <Visible text>; <index>; <function key>; <number (optional)>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
sendValue
<Object Type_Input>; <Visible text>; <index>; <value>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
tab
<Object Type_Input>; <Visible text>; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyHidden
<Object Type_Input>; <Visible text>; <index>; <abs(optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyVisible
<Object Type_Input>; <Visible text>; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
waitForElementVisible
<Object Type_Input>; <Visible text>; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getObjectCount
<Object Type_Input>; <Visible text (optional)>; <index (optional)>; <abs (optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
sendSecureValue
<Object Type_Input>; <Visible text>; <index>; <Encrypted Text>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getAllValues
<Object_Type_Input>; <Visible text>; <index>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyAllValues
<Object Type_Input>; <Visible text>; <index>; <text1>; <text2>; …; <text>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
horizontalScroll
<Object Type_Input>; <Visible text>; <index>; <Direction>; <No. of Scrolls>; <abs(optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verticalScroll
<Object Type_Input>; <Visible text>; <index>; <Direction>; <No. of Scrolls>; <abs (optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
sendSecureFunctionKeys
<Object Type_Input>; <Visible text>; <index>; <Direction>; <No.of Scrolls>; <abs (optional)>; <Encrypted Text>
(Optional)
Text
Static values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
Click
<Object Type_Input>; <Visible text>;<index>;<abs(optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
clearText
<Object Type_Input>; <Visible text>;<index>;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getTextboxLength
<Object Type_Input>; <Visible text>;<index>;<abs(Optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyText
<Object Type_Input>; <Visible text>;<index>;<value>;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getButtonName
<Object Type_Input>; <Visible text>;<index>;<abs(Optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyButtonName
<Object Type_Input>; <Visible text>;<index>;<value>;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getLinkText
<Object Type_Input>; <Visible text>;<index>;<abs(Optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
verifyLinkText
<Object Type_Input>; <Visible text>;<index>;<value>;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyWebImages
<Object Type_Input>; <Visible text>;<index>;<Imagepath>;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
imageSimilarityPercentage
<Object Type_Input>; <Visible text>;<index>;<Image path>;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
uploadFile
<Object Type_Input>; <Visible text>;<index>;<file path>;<file name>;<wait (in seconds)>;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
dropFile
<Object Type_Input>; <Visible text>;<index>;<file path>;<file name>;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getCount
<Object Type_Input>; <Visible text>;<index>;<abs(Optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getSelected
<Object Type_Input>; <Visible text>;<index>;<abs(Optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
getValueByIndex
<Object Type_Input>; <Visible text>;<index>;<index value>;<abs(Optional)>
{Variable}
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyCount
<Object Type_Input>; <Visible text>;<index>;<count>;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifySelectedValue
<Object Type_Input>; <Visible text>;<index>;<value>;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
verifyValuesExists
<Object Type_Input>; <Visible text>;<index>;<text1>;<text2>....etc;<abs(Optional)>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
cmbGetAllValues
N/A
{Variable}; {Status}
N/A
Keyword
Input Syntax
Output Syntax
Supported Input Formats
cmbGetCount
N/A
{Variable}; {Status}
N/A
Keyword
Input Syntax
Output Syntax
Supported Input Formats
cmbSelectValueByIndex
<Index_Value>
(Optional)
Text
Static Values
Dynamic Variables
Keyword
Input Syntax
Output Syntax
Supported Input Formats
cmbSelectValueByText
<Input Text>
(Optional)
Text
Static Values
Dynamic Variables