...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
timeOut | Enter the timeout (in seconds) to wait for the object visibility. | No | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
pollingInterval | Enter the frequency (in milliseconds) after which you want to check for the object visibility before exhausting timeout. | No | String |
keyNonClickability | Enter the key name under which the status of the step needs to be stored. It stores 0 for Pass, 1 for Fail, and 2 for Defect. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellNonClickability “10”“2” “5” “5”"keyNonClickability" “Fail”
WaitForCellExistence
This action waits for the cell to exist, i.e. it is in DOM, in datatable.
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
timeOut | Enter the timeout (in seconds) to wait for the object visibility. | No | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
pollingInterval | Enter the frequency (in milliseconds) after which you want to check for the object visibility before exhausting timeout. | No | String |
key | Enter the key name under which the status of the step needs to be stored. It stores 0 for Pass, 1 for Fail, and 2 for Defect. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellExistence “10”“5” “5” “5” “keyNonClickability” “Fail”
WaitForCellNonExistence
This action waits for the cell to not exist, i.e. it is not in DOM, in datatable.
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
timeOut | Enter the timeout (in seconds) to wait for the object visibility. | No | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
pollingInterval | Enter the frequency (in milliseconds) after which you want to check for the object visibility before exhausting timeout. | No | String |
key | Enter the key name under which the status of the step needs to be stored. It stores 0 for Pass, 1 for Fail, and 2 for Defect. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellNonExistence “10”“5” “2” “5” “key” “Fail”
WaitForCellInnerTextContains
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
innerText | Enter the text of the cell. | Yes | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
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 |
keyInnerText | Enter the key in which the innerText needs to be stored. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellInnerTextContains “Test1”“2” “5” “10”“5” “key” “Fail”
WaitForCellInnerTextNotContains
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
innerText | Enter the text of the cell. | Yes | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
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 |
keyInnerText | Enter the key in which the innerText needs to be stored. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | NoString | String |
Example:
WaitForCellInnerTextNotContains “Test”“2” “5” “10”“5” “keyInnerText” “Fail”
WaitForCellInnerTextMatchesPattern
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
innerTextRegXPattern | Enter the text of the cell. | Yes | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
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 |
keyInnerText | Enter the key in which the innerText needs to be stored. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellInnerTextMatchesPattern “^t.*es$t”“2” “5” “10”“5” “keyInnerText” “Fail”
WaitForCellInnerTextToBe
This action waits for inner text of the cell to be the expected inner text until timeout expires. If object is not found in the DOM, step status will fail. If key is provided, status will be stored in key. The status depends on the statusIfConditionNotSatisfied parameter.
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
innerText | Enter the text of the cell. | Yes | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
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 |
keyInnerText | Enter the key in which the innerText needs to be stored. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellInnerTextToBe “TestUpdate1”“2” “5” “10”“5” “keyInnerText” “Fail”
WaitForCellInnerTextNotToBe
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
innerText | Enter the text of the cell. | Yes | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
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 |
keyInnerTextNotToBe | Enter the key in which the innerText needs to be stored. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellInnerTextNotToBe “TestUpdate1”“2” “5” “10”“5” “keyInnerText” “Fail”
WaitForCellVisibilty
This action waits for the cell to be visible in datatable.
...
Parameter Name | Parameter Description | Mandatory | Data Type | |||
---|---|---|---|---|---|---|
timeOut | Enter the timeout (in seconds) to wait for the object visibility. | No | String | |||
rowNumber | Enter the index of the row. | Yes | String | |||
columnNumber | Enter the index of the column. | Yes | 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 the step needs to be stored. It stores 0 for Pass, 1 for Fail, and 2 for Defect. | No | String | |||
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String | No | String |
Example:
WaitForCellVisibilty “10”“2” “3” “5” “keyVisibility” “Fail”
WaitForCellInvisibilty
This action waits for the cell to be invisible in datatable.
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
timeOut | Enter the timeout (in seconds) to wait for the object visibility. | No | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
pollingInterval | Enter the frequency (in milliseconds) after which you want to check for the object visibility before exhausting timeout. | No | String |
keyInvisibility | Enter the key name under which the status of the step needs to be stored. It stores 0 for Pass, 1 for Fail, and 2 for Defect. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellInvisibilty “10”“2” “5” “5” “keyInvisibility” “Fail”
WaitForCellSelection
This action waits for selection of the cell until timeout expires. If object is not found in the DOM, step status will fail. If key is provided, status will be stored in key. The status depends on the statusIfConditionNotSatisfied parameter.
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
timeOut | Enter the timeout (in seconds) to wait for the object visibility. | No | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
pollingInterval | Enter the frequency (in milliseconds) after which you want to check for the object visibility before exhausting timeout. | No | String |
key | Enter the key name under which the status of the step needs to be stored. It stores 0 for Pass, 1 for Fail, and 2 for Defect. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellSelection “10”“5” “2” “5” “key” “Fail”
WaitForCellSelectStateToBe
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
expectedSelectionState | Enter true for selected and false for deselected. The default value is true. | No | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
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 |
keySelectionState | Enter the key name under which the status of the step needs to be stored. It stores 0 for Pass, 1 for Fail, and 2 for Defect. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellSelectStateToBe “True”“10”“5” “3” “5” “key” “Fail”
WaitForCellStaleness
This action waits for staleness of the cell until timeout expires. If object is not found in the DOM, step status will fail. If key is provided, status will be stored in key. The status depends on the statusIfConditionNotSatisfied parameter.
...
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
timeOut | Enter the timeout (in seconds) to wait for the object visibility. | No | String |
rowNumber | Enter the index of the row. | Yes | String |
columnNumber | Enter the index of the column. | Yes | String |
pollingInterval | Enter the frequency (in milliseconds) after which you want to check for the object visibility before exhausting timeout. | No | String |
key | Enter the key name under which the status of the step needs to be stored. It stores 0 for Pass, 1 for Fail, and 2 for Defect. | No | String |
statusIfConditionNotSatisfied | Enter the status of the step you want to display in the report if the expected condition is not satisfied. The value for this parameter can be Pass, Fail, and Defect. | No | String |
Example:
WaitForCellStaleness “10”“5” “2” “5” “key” “Fail”
VerifyPropertyValue
This action verifies the property of the specified object using property names, such as class, id, name, and role, and parameter value, such as the actual value of the property.
...