Macro lookup error: excerpt "DownloadFile" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
Macro lookup error: excerpt "MouseOver" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
Macro lookup error: excerpt "MouseDown" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
Macro lookup error: excerpt "MouseUp" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
Macro lookup error: excerpt "ClickAt" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
Macro lookup error: excerpt "VerifyEnability" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
DoubleClick
This action double-clicks the specified web element.
Example:
DoubleClick
RightClick
This action right-clicks the specified web element.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
option | The context menu option number that needs to be clicked. | Yes | String |
Example:
RightClick "3''
This will select the third option from the context-menu.
Macro lookup error: excerpt "WaitForObject" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
Macro lookup error: excerpt "ClickAndWait" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
DragAndDropToOffset
This action drags and drops the specified web element at the specified location.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
offsetX | Enter the offset in pixels from the current location to which the element should be moved. The offset parameter can be as +100,100 , -100, 10, and so on. | Yes | String |
offsetY | Enter the offset in pixels from the current location to which the element should be moved. The offset parameter can be as -100,100 , +100, and so on. | Yes | String |
Example:
DragAndDropOffset "100" "500"
Macro lookup error: excerpt "StoreExistence" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
Macro lookup error: excerpt "StoreChildCount-withoutlocator" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
Macro lookup error: excerpt "ScrollIntoView" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
Macro lookup error: excerpt "ClickJS" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
Macro lookup error: excerpt "ActionClick" was not found on page "WebButton Actions" (with ID 221643190) in space "QFWM".
If you're experiencing issues please see our Troubleshooting Guide.
New Actions
This action stores the text existing inside the specified object under the specified keys. The key values can be retrieved using the key names. Input Parameters: Example: StoreText "Key" This action stores the current location of the object under the specified keys. The key values can be retrieved using the key names. Input Parameters: Example: StoreLocation "Height" "Width" This action stores the CSS property value of the object under the specified key. Key value can be retrieved using the key name. Input Parameters: Example: StoreCSSProperty "display" "Key" This action stores the size of the specified object under keys. The key values can be retrieved using key names. Input Parameters: Example: StoreSize "Height" "Width" This action sends one or multiple keys specified in the parameters to the specified object. You may use the syntaxes mentioned below to send normal or modifier keys. Multiple keys should be separated by caret. Input Parameters: Adding modifiers like SHIFT, Control, and so forth perform the activity of pressing these keys only. For releasing these keys, you must add these modifiers again based on requirements as shown in the example. Example: sendKeySequence "~{SHIFT~}^w^~{SHIFT~}^elcome" The example above will press the word Welcome. Apart from the normal alphabets, you can also send the modifier keys. When sending modifier keys, you have to send them in the syntax given. This action sets the data specified in the 'value' attribute of the object. Example: SetValueAttribute "#ff0990" This action stores the data present in the 'value' attribute of the object. Example: StoreValueAttribute "Key" This action waits until the element gets detached from the DOM. Input Parameters: Example: WaitForStaleness "5" "500" "Key" "Defect" This action waits till the value of the specified attribute changes to the expected partial value. This comparison is case-sensitive. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForAttributeContains "id" "we323es" "5" "500" "Key" "Defect" This action waits until the specified attribute's value of the object changes to other than the partial parameterized value. This comparison is case-sensitive. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForAttributeValueContains "id" "232waf" "5" "500" "Key" "Defect" This action waits till the value of the specified attribute changes to the exact expected value. This comparison is case-sensitive. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForAttributeToBe "id" "232waf" "5" "500" "Key" "Defect" This action waits until the specified attribute's value of the object changes to other than the exact parameterized value. This comparison is case-sensitive. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForAttributeNotToBe "id" "232waf" "5" "500" "Key" "Defect" This action waits until the specified attribute's value of the object gets filled with some value. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForAttributeNotToBeEmpty "id" "5" "500" "Key" "Defect" This action waits until the specified attribute's value of the object gets empty. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForAttributeToBeEmpty "id" "5" "500" "Key" "Defect" This action waits for the specified object to be clickable. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForClickability "5" "500" "Key" "Defect" This action waits for the existence of the specified object. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForExistence "5" "500" "Key" "Defect" This action waits for the object to contain the expected partial text. The comparison is case-sensitive. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForInnerTextContains "Connect" "5" "500" "Key" "Defect" This action waits for inner text from the specified object to match the expected text regular expression pattern. The comparison is case-sensitive. You may specify the timeout and polling interval, if required. Input Parameters: Enter the expected pattern for the inner text. Pattern should be regular expression. Step fails in case the pattern is invalid. Example: WaitForInnerTextMatchesPattern ".*[My]text.*" "5" "500" "Key" "Defect" This action waits until the specified attribute's value of the object changes to other than the parameterized value. The comparison is case-sensitive. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForInnerTextNotContains "Connect" "5" "500" "Key" "Defect" This action waits till the inner text of the object changes from the specified text. The comparison is case-sensitive. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForInnerTextNotToBe "Connect" "5" "500" "Key" "Defect" This action waits for the object to contain the expected exact text. The comparison is case-sensitive. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForInnerTextToBe "Connect" "5" "500" "Key" "Defect" This action waits for the object to invisible. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForInvisibility "5" "500" "Key" "Defect" This object waits for the object to become non clickable. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForNonClickability "5" "500" "Key" "Defect" This action waits for the non existence of the specified object. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForNonExistence "5" "500" "Key" "Defect" This action waits for the object to be visible. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForVisibility "5" "500" "Key" "Defect" This action waits for the number of elements of the specified object locator on the page to be same as the expected number. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForNumberOfElementsToBe "2" "5" "500" "Key" "Defect" This action waits for the number of elements of the specified object locator on the page to be less than the specified number. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForNumberOfElementsToBeLessThan "2" "5" "500" "Key" "Defect" This action waits for the number of elements of the specified object locator on the page to be more than the specified number. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForNumberOfElementsToBeMoreThan "2" "5" "500" "Key" "Defect" This action waits for the child elements of the specified object to appear. You may specify the timeout and polling interval, if required. Input Parameters: Example: WaitForChildElement "id" "2" "5" "500" "Key" "Defect"StoreText
Parameter Name Parameter Desciption Mandatory Data Type keyText Enter the key name to store the text from the specified object. Yes String StoreLocation
Parameter Name Parameter Desciption Mandatory Data Type keyHeight Enter the key name to store the height of the location of the object. Yes String keyWidth Enter the key name to store the width of the location of the object. Yes String StoreCSSProperty
Parameter Name Parameter Desciption Mandatory Data Type property Enter the property name whose value you want to store. Yes String keyProperty Enter the key name under which the property value will be stored. Yes String StoreSize
Parameter Name Parameter Description Mandatory Data Type keyXPosition Enter the key name under which you want to store the height of the object. Yes String keyYPosition Enter the key name under which you want to store the width of the object. Yes String SendKeySequence
Parameter Name Parameter Description Mandatory Data Type arrayofKeys Enter the keys you want to send. Multiple keys should be separated by caret (^). Yes Array Key Syntax NULL ~{NULL~} CANCEL (Esc) ~{CANCEL~} HELP ~{HELP~} BACK_SPACE ~{BACK_SPACE~} TAB ~{TAB~} CLEAR ~{CLEAR~} RETURN ~{RETURN~} ENTER ~{ENTER~} SHIFT ~{SHIFT~} LEFT_SHIFT(SHIFT) ~{LEFT_SHIFT~} CONTROL ~{CONTROL~} LEFT_CONTROL(CONTROL) ~{LEFT_CONTROL~} ALT ~{ALT~} LEFT_ALT ~{LEFT_ALT~} PAUSE ~{PAUSE~} ESCAPE ~{ESCAPE~} SPACE ~{SPACE~} PAGE_UP ~{PAGE_UP~} PAGE_DOWN ~{PAGE_DOWN~} END ~{END~} HOME ~{HOME~} LEFT ~{LEFT~} ARROW_LEFT ~{ARROW_LEFT~} UP ~{UP~} ARROW_UP ~{ARROW_UP~} RIGHT ~{RIGHT~} ARROW_RIGHT ~{ARROW_RIGHT~} DOWN ~{DOWN~} ARROW_DOWN ~{ARROW_DOWN~} INSERT ~{INSERT~} DELETE ~{DELETE~} SEMICOLON ~{SEMICOLON~} EQUALS ~{EQUALS~} NUMPAD0 ~{NUMPAD0~} NUMPAD1 ~{NUMPAD1~} NUMPAD2 ~{NUMPAD2~} NUMPAD3 ~{NUMPAD3~} NUMPAD4 ~{NUMPAD4~} NUMPAD5 ~{NUMPAD5~} NUMPAD6 ~{NUMPAD6~} NUMPAD7 ~{NUMPAD7~} NUMPAD8 ~{NUMPAD8~} NUMPAD9 ~{NUMPAD9~} MULTIPLY ~{MULTIPLY~} ADD ~{ADD~} SEPARATOR ~{SEPARATOR~} SUBTRACT ~{SUNSTRACT~} DECIMAL ~{DECIMAL~} DIVIDE ~{DIVIDE~} F1 ~{F1~} F2 ~{F2~} F3 ~{F3~} F4 ~{F4~} F5 ~{F5~} F6 ~{F6~} F7 ~{F7~} F8 ~{F8~} F9 ~{F9~} F10 ~{F10~} F11 ~{F11~} F12 ~{F12~} META ~{META~} COMMAND (META) ~{COMMAND~} ZENKAKU_HANKAKU ~{ZENKAKU_HANKAKU~} CLICK ~{CLICK~} DOUBLECLICK ~{DOUBLECLICK~} RIGHTCLICK ~{CONTEXTCLICK~} SetValueAttribute
Parameter Name Parameter Description Mandatory Data Type value Enter the value to be added for the Value attribute. Yes String StoreValueAttribute
Parameter Name Parameter Description Mandatory Data Type key Enter the key name under which the value will be stored. Enter the value to be added for the Value attribute.Key value can be retried using the key name. Yes String WaitForStaleness
Parameter Name Parameter Description Mandatory Data Type timeOut Enter the timeout (in seconds) to wait for the value to be detached. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for existence of the element before exhausting timeout. No String keyStatus Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForAttributeContains
Parameter Name Parameter Description Mandatory Data Type attributeName Enter the attribute name whose value you want to check. Yes String attributeValue Enter the partial expected partial attribute value. Yes String timeOut Enter the timeout (in seconds) to wait for the expected value. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for existence of the expected value before exhausting timeout. No String keyAttributeValueContains Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForAttributeNotContains
Parameter Name Parameter Description Mandatory Data Type attributeName Enter the attribute name whose value you want to check. Yes String attributeValue Enter the value which should not be there in the attribute value. Yes String timeOut Enter the timeout (in seconds) to wait for the value to change. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for existence of the unexpected value before exhausting timeout. No String keyAttributeValue Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForAttributeToBe
Parameter Name Parameter Description Mandatory Data Type attributeName Enter the attribute name whose value you want to check. Yes String attributeValue Enter the exact expected value. Yes String timeOut Enter the timeout (in seconds) to wait for the expected value. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for existence of the expected value before exhausting timeout. No String keyAttributeValue Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForAttributeNotToBe
Parameter Name Parameter Description Mandatory Data Type attributeName Enter the attribute name whose value you want to check. Yes String attributeValue Enter the value which should not be there in the attribute value. Yes String timeOut Enter the timeout (in seconds) to wait for the value to change. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for existence of the expected value before exhausting timeout. No String keyAttributeValueNotToBe Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForAttributeNotToBeEmpty
Parameter Name Parameter Description Mandatory Data Type attributeName Enter the attribute name whose value you want to check. Yes String timeOut Enter the timeout (in seconds) to wait for the attribute value. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the attribute value before exhausting timeout. No String keyAttributeValue Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForAttributeToBeEmpty
Parameter Name Parameter Description Mandatory Data Type attributeName Enter the attribute name whose value you want to check. Yes String timeOut Enter the timeout (in seconds) to wait for the attribute value to be empty. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the attribute value before exhausting timeout. No String keyAttributeValue Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForClickability
Parameter Name Parameter Description Mandatory Data Type timeOut Enter the timeout (in seconds) to wait for the object to be clickable. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the object clickability before exhausting timeout. No String keyClickability Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForExistence
Parameter Name Parameter Description Mandatory Data Type timeOut Enter the timeout (in seconds) to wait for the existence of the object. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the existence of the object before exhausting timeout. No String keyExistence Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForInnerTextContains
Parameter Name Parameter Description Mandatory Data Type innerText Enter the expected text you want to wait for. Yes String timeOut Enter the timeout (in seconds) to wait for the expected text. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the expected text before exhausting timeout. No String keyInnerTextContains Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForInnerTextMatchesPattern
Parameter Name Parameter Description Mandatory Data Type innerTextRegXPattern Yes String timeOut Enter the timeout (in seconds) to wait for the expected text. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the expected text before exhausting timeout. No String keyInnerText Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForInnerTextNotContains
Parameter Name Parameter Description Mandatory Data Type innerText Enter the text which should not be there in the attribute value. Yes String timeOut Enter the timeout (in seconds) to wait for the inner text to disappear. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the expected text to be disappeared before exhausting timeout. No String keyInnerTextNotContains Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForInnerTextNotToBe
Parameter Name Parameter Description Mandatory Data Type innerText Enter the text which should not be there in the object. Yes String timeOut Enter the timeout (in seconds) to wait for the text to change. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the expected text before exhausting timeout. No String keyInnerTextNotToBe Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForInnerTextToBe
Parameter Name Parameter Description Mandatory Data Type innerText Enter the expected text you want to wait for. Yes String timeOut Enter the timeout (in seconds) to wait for the expected text. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the expected text before exhausting timeout. No String keyInnerText Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForInvisibility
Parameter Name Parameter Description Mandatory Data Type timeOut Enter the timeout (in seconds) to wait for the object to go invisible. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the invisibility before exhausting timeout. No String keyInvisibility Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForNonClickability
Parameter Name Parameter Description Mandatory Data Type timeOut Enter the timeout (in seconds) to wait for the object to become non clickable. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the clickability before exhausting timeout. No String keyNonClickability Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForNonExistence
Parameter Name Parameter Description Mandatory Data Type timeOut Enter the timeout (in seconds) to wait for the non existence of the object. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for non existence of the object before exhausting timeout. No String keyNonExistence Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForVisibility
Parameter Name Parameter Description Mandatory Data Type timeOut Enter the timeout (in seconds) to wait for the object visibility. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the object visibility before exhausting timeout. No String keyVisibility Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForNumberOfElementsToBe
Parameter Name Parameter Description Mandatory Data Type number Enter the expected number of elements to wait for. Yes Integer timeOut Enter the timeout (in seconds) to wait for the number elements to appear. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the objects before exhausting timeout. No String keyNumberOfElements Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForNumberOfElementsToBeLessThan
Parameter Name Parameter Description Mandatory Data Type expectedNumOfElements Enter the expected number of elements to wait for. Yes String timeOut Enter the timeout (in seconds) to wait for the number elements to appear. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the objects before exhausting timeout. No Integer keyNumOfElementsLessThan Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForNumberOfElementsToBeMoreThan
Parameter Name Parameter Description Mandatory Data Type expectedNumOfElements Enter the expected number of elements to wait for. Yes Integer timeOut Enter the timeout (in seconds) to wait for the number elements to appear. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the objects before exhausting timeout. No String keyNumOfElementsLessThan Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String WaitForChildElement
Parameter Name Parameter Description Mandatory Data Type childLocatorType Enter the locator type of the object whose child you want to check. Yes String childLocatorValue Enter the locator value of the child you want to check. Yes String timeOut Enter the timeout (in seconds) to wait for the elements to appear. No String pollingInterval Enter the frequency (in milliseconds) after which you want to check for the objects before exhausting timeout. No String keyExistence Enter the key name under which the status of this step will be stored. Stores 0 for Pass, 1 for Fail, and 2 for Defect. No String statusIfConditionNotSatisfied Enter the status of the step you want to show in the report in case the expected condition is not satisfied. Default value is Fail. You can override this with Defect. No String