Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

VerifyExistence

This action verifies the existence of the specified object. 
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

existence

Value for this parameters can be true or false.

  • Set True if you want to check the existence.
  • Set False if you want to check the non-existence.

Yes

String

Example: VerifyExistence                      "True"

VerifyVisibility

This action verifies the visibility of the specified object.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

visibility

Value for this parameters can be true or false.

  • Set True if you want to check the visibility.
  • Set False if you want to check the invisibility.

Yes

String

Example: VerifyVisibility                      "True"

Click

This action clicks the specified object.
This action does not have any parameter.
Example:Click

StorePropertyValue

This action stores the property of the specified object under the key name. The stored key value can be retrieved using the key name.
Some Android and iOS properties are not accessible.
List of accessible properties for Android: "name", "contentDescription", "className", "resourceId", "text", "enabled", "checkable", "checked", "clickable", "focusable", "focused", "longClickable", "scrollable", "selected", "displayed"
List of accessible properties for iOS: "name", "value", "label", "hint"
Input Parameters:

ParameterName

Parameter Description

Mandatory

Data Type

Key

Enter the key name under which the property value will be stored.

Yes

 String

Property

Property/attribute name whose value needs to be stored under the specified key. This can be any accessible property of Android/iOS native object mentioned above.

Yes

 String

Example: StorePropertyValue                            "key"                     "text"

SetFocus

This action sets the focus on the specified object.
This action does not have any parameter. 
Example: SetFocus

VerifyEnability

This action verifies the enability of the specified object. 
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

enability

Value for this parameters can be true or false.

  • Set True if you want to verify that the object is enabled. 
  • Set False if you want to verify that the object is disabled.

Yes

String

Example: VerifyEnability                          "True"

ClickAt

This action clicks at the specified point on the object.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

X

The x-coordinate of the click.

Yes

String

Y

The y-coordinate of the click.

Yes

String

Example ClickAt        "5"            "10"

WaitForObject (Deprecated)

This action waits for the object to appear or disappear for the maximum number of seconds specified.
If the object is found or not found before the maximum time specified, execution continues to the next steps.
If the wait time is "" then the wait time shall be the "Sync Time" set under the Configuration Settings (Execution) window.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

waitTime

Enter the number of seconds to wait for the object to appear or disappear. This has to be 0 or any positive number.

Yes

String

existence

Value for

On this page:

Table of Contents
maxLevel2
minLevel2

IsSelect

This action verifies whether the specified radio button is selected or not.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

state

Value of this parameter can be true or false.

  • Set
true
  • True if you want to check
for
  • the
appearance of the object
  • selection.
  • Set
false
  • False if you want to check
for
  • the
disappearance of the objectWaitForObject
  • deselection.

Yes

String

Example:


IsSelect            

"10"

           "

true"The action waits for maximum 10 seconds for the object to appear. If the object appears before 10 seconds elapses, execution continues to the next steps. WaitForObject         "15"          "False"The action shall wait for maximum 15 seconds for the object to disappear. If the object disappears before 15 seconds elapses,execution continues to the next steps.

On this page:

Table of Contents
maxLevel2
minLevel2

IsSelect

This action verifies whether the specified radio button is selected or not.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

state

Value of this parameter can be true or false.

  • Set True if you want to check the selection.
  • Set False if you want to check the deselection.

Yes

String

Example: IsSelect                        "True"

Select

This action True"

Select

This action selects the specified radio button.
This action does not have any input parameter.
Example: Select

SelectByIndex

This action selects the specified radio button based on its index number. The index starts from 1. 
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

groupName

Enter the group name under which the radio button to be selected belongs to. This is the name attribute in html.

Yes

String

index

Enter the index of the radio button from the group which you want to select. Index starts at 1

Yes

String

Example: SelectByIndex               "Selection"               "3"


SelectIfTrue

This action selects the radio button, only if the parameter passed is true. Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

check

Value for this parameter can be true or false

No

True

Example SelectIfTrue          "True"

StoreExistence

This action stores existence of the object under the specified key. The key value can be retrieved using the key name

No

True

Example SelectIfTrue          "True"

ClickAndWait (Deprecated)

This action clicks the specified object and waits for the seconds specified in Sync Time under the Configuration Settings (Execution) window.
Default value is 20 seconds. If the page loads before reaching the maximum sync time execution continues to the next steps. 
This action does not have any parameter. 
Example: ClickAndWait
Webdriver waits for the document to come in ready state. If it is in ready state it is assumed that the page is loaded completely and Webdriver stops waiting. The condition to wait till the document to load in ready state and assume that the page is loaded could however not work as expected at all times.

ClickandchooseOkOnNextConfirmation (Deprecated)

This action handles the alert or confirmation that comes up post clicking the OK button. This action fails if the button is clicked and no alert or confirmation comes up
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

Key

Enter the key name under which the existence's Boolean value will be stored. 

  • Stores True if the object exists.
  • Stores False if the object does not exist.

Yes

String

Example:
StoreExistence                               "Key"

StoreChildCount

This action stores the child count of the specified object under the specified key. The key value can be retrieved using the key name.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

Key

Enter the key name under which the child count will be saved.

Yes

String

Example:
StoreChildCount                               "Key"

ClickJS

This action clicks the specified object from the web application under test.
This action does not have any parameter.
Example: ClickandchooseOkOnNextConfirmation

StoreExistence

This action stores existence of the object under the specified key. The key value can be retrieved using the key name. 
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

Key

Enter the key name under which the existence's Boolean value will be stored. 

  • Stores True if the object exists.
  • Stores False if the object does not exist.

Yes

String

Example:
StoreExistence                               "Key"

StoreChildCount

This action stores the child count of the specified object under the specified key. The key value can be retrieved using the key name.
Note: ClickJS uses javascript code to perform the click action. Qualitia recommends using this action for web applications.
Example:
ClickJS

ClickAction

This action clicks the specified object from the web application under test.
This action does not have any parameter.
Note: ActionClick uses underlying selenium WebDriver "Action" class to perform click action. Qualitia recommends using this action for web applications.
Example:
ClickAction

WaitForSelectionStateToBe

This action waits for the object to go to the specified state. You may specify the timeout and polling interval, if required.
 Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

KeyexpectedSelectionState

Enter the key name under which the child count will be savedexpected selection state. Set True for selection and False for deselection.

Yes

StringBoolean

Example:
StoreChildCount                               "Key"

ClickJS

This action clicks the specified object from the web application under test.
This action does not have any parameter.
Note: ClickJS uses javascript code to perform the click action. Qualitia recommends using this action for web applications.
Example:
ClickJS

ClickAction

This action clicks the specified object from the web application under test.
This action does not have any parameter.
Note: ActionClick uses underlying selenium WebDriver "Action" class to perform click action. Qualitia recommends using this action for web applications.
Example:
ClickAction

WaitForSelectionStateToBe

This action waits for the object to go to the specified state

timeOut

Enter the timeout (in seconds) to wait for the object to get selected.     

No

Integer

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the selection of the object before exhausting timeout. 

No

Integer

keySelectionState

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

Example:
WaitForSelectionStateToBe          "False"        "5"          "500"       "Key"       "Defect"

WaitForSelection

This action waits till the specified object gets selected. You may specify the timeout and polling interval, if required.
 Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

expectedSelectionState

Enter the expected selection state. Set True for selection and False for deselection.

Yes

Boolean

timeOut

Enter the timeout (in seconds) to wait for the object to get selected.     

No

Integer

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the selection of the object before exhausting timeout. 

No

Integer

keySelectionState

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

Example:
WaitForSelectionStateToBe          "False"        "5"          "500"       "Key"       "Defect"

WaitForSelection

This action waits till the specified object gets selected. You may specify the timeout and polling interval, if required.
 

timeOut

Enter the timeout (in seconds) to wait for the object to get selected.     

No

Integer

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the selection of the object before exhausting timeout. 

No

Integer

keySelection

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

Example:
WaitForSelection      "5"          "500"     "Key"       "Defect"

DoubleClick

This action double-clicks the specified web element.
Example:DoubleClick

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"

MouseDown

This action simulates left-click at the specified location on the screen.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

timeOut

Enter the timeout (in seconds) to wait for the object to get selected.     

No

Integer

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the selection of the object before exhausting timeout. 

No

Integer

keySelection

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.

NoX

The x-coordinate of the click.

Yes

String

Y

The y-coordinate of the click.

Yes

String

Example:
WaitForSelection  MouseDown     "5"           "500"      "Key5"           "Defect"

DoubleClick

This action double-clicks the specified web element.
Example:DoubleClick

DragAndDropToOffset

This action drags and drops the specified web element at the specified location. "10"

MouseUp

This action simulates the event that occurs when the user releases the mouse button.
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 onX

The x-coordinate of the click.

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 onY

The y-coordinate of the click.

Yes

String

Example:DragAndDropOffset    MouseUp         "1005"              "50010"

MouseDown

MouseOver

This action simulates left-click at the specified location on the screena mouse hovering over the specified object.
This action does not have any parameter. 
Example: MouseOver

RightClick

This action right-clicks the specified web element.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

X

The x-coordinate of the click.

Yes

String

Y

The y-coordinate of the clickoption

The context menu option number that needs to be clicked.

Yes

String

Example:
MouseDown     RightClick             "5"           "10"

MouseUp

This action simulates the event that occurs when the user releases the mouse button.3''
This will select the third option from the context-menu.

ScrollIntoView

This action scrolls to view the specified object. 
This action does not have any parameter. 
Example:
ScrollIntoView

ScrollIntoView

This action scrolls to view the specified object. 
This action does not have any parameter. 
Example:
ScrollIntoView

SendKeySequence

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:

Parameter Name

Parameter Description

Mandatory

Data Type

X

The x-coordinate of the clickarrayofKeys

Enter the keys you want to send. Multiple keys should be separated by caret (^).

Yes

String

Y

The y-coordinate of the click.

Yes

String

Example MouseUp         "5"

Array

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                "10"

MouseOver

This action simulates a mouse hovering over the specified object.
This action does not have any parameter. 
Example: MouseOver

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.

ScrollIntoView

This action scrolls to view the specified object. 
This action does not have any parameter. 
Example:
ScrollIntoView

ScrollIntoView

This action scrolls to view the specified object. 
This action does not have any parameter. 
Example:
ScrollIntoView

SendKeySequence

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:

Parameter Name

Parameter Description

Mandatory

Data Type

arrayofKeys

Enter the keys you want to send. Multiple keys should be separated by caret (^).

Yes

Array

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.

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

This action sets the data specified in the 'value' attribute of the object.{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.

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

This action sets the data specified in the 'value' attribute of the object.

Parameter Name

Parameter Description

Mandatory

Data Type

value

Enter the value to be added for the Value attribute.

Yes

String

Example:
SetValueAttribute           "#ff0990"

StoreCSSProperty

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:

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

Example:
StoreCSSProperty        "display"            "Key"

StoreLocation

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:

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

Example:
StoreLocation        "Height"            "Width"

StoreSize

This action stores the size of the specified object under keys. The key values can be retrieved using key names.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Typevalue

keyXPosition

Enter the key name under which you want to store the height of the object.

Yes

String

keyYPosition

Enter the value to be added for the Value attributekey name under which you want to store the width of the object.

Yes

String

Example:
SetValueAttribute  StoreSize           "Height"                   "#ff0990Width"

StoreCSSProperty

StoreText

This action stores the CSS property value of the text existing inside the specified object under the specified key. Key value keys. The key values can be retrieved using the key namenames
Input Parameters:

Parameter Name

Parameter Desciption

Mandatory

Data Type

propertykeyText

Enter the property key name whose value you want to store.

Yes

String

keyPropertyto store the text from the specified object.

Yes

String

Example:
StoreText        "Key" 

StoreValueAttribute

This action stores the data present in the 'value' attribute of the object.

Parameter Name

Parameter Description

Mandatory

Data Type

key

Enter the key name under which the property 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

Example:
StoreCSSProperty        "display"      StoreValueAttribute        "Key"

StoreLocation

VerifyEnability

This action stores verifies the current location enability of the object under the specified keys. The key values can be retrieved using the key namesspecified object
Input Parameters:

DesciptionEnter the key name to store the width of the location of the object

Parameter Name

Parameter

Description

Mandatory

Data Type

keyHeight

Enter the key name to store the height of the location of the object.

Yes

String

keyWidth

enability

Value for this parameters can be true or false.

  • Set True if you want to verify that the object is enabled. 
  • Set False if you want to verify that the object is disabled.

Yes

String

Example:
StoreLocation  VerifyEnability               "Height"              "WidthTrue"

StoreSize

WaitForAttributeNotContains

This action stores the size waits until the specified attribute's value of the specified object under keys. The key values can be retrieved using key names.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:

Parameter Name

Parameter Description

Mandatory

Data Type

keyXPositionattributeName

Enter the key attribute name under which whose value you want to store the height of the objectcheck.

Yes

String

keyYPositionattributeValue 

Enter the key name under which you want to store the width of the objectvalue which should not be there in the attribute value.

Yes

String

Example:
StoreSize           "Height"                   "Width"

StoreText

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:

Parameter Name

Parameter Desciption

Mandatory

Data Type

keyText

Enter the key name to store the text from the specified object.

Yes

String

Example:
StoreText        "Key" 

StoreValueAttribute

This action stores the data present in the 'value' attribute of the object.

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForAttributeValueContains      "id"           "232waf"        "5"          "500"     "Key"       "Defect"

WaitForAttributeContains

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:

Parameter Name

Parameter Description

Mandatory

Data Type

keyattributeName

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

Example:
StoreValueAttribute        "Key"

VerifyEnability

This action verifies the enability of the specified object. 
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

enability

Value for this parameters can be true or false.

  • Set True if you want to verify that the object is enabled. 
  • Set False if you want to verify that the object is disabled.

Yes

String

Example: VerifyEnability                          "True"

WaitForAttributeNotContains

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForAttributeContains      "id"           "we323es"        "5"          "500"     "Key"       "Defect"

WaitForAttributeNotToBe

This action waits until the specified attribute's value of the object changes to other than the partial exact parameterized value.  This This comparison is case-sensitive. You may specify the timeout and polling interval, if required.     
Input Parameters:

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 expected value before exhausting timeout. 

No

String

keyAttributeValuekeyAttributeValueNotToBe

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForAttributeValueContains  WaitForAttributeNotToBe       "id"           "232waf"        "5"          "500"     "Key"       "Defect"

WaitForAttributeContains

WaitForAttributeNotToBeEmpty

This action waits till until the specified attribute's value of the specified attribute changes to the expected partial value. This comparison is case-sensitiveobject gets filled with some value. You may specify the timeout and polling interval, if required.  
Input Parameters:

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 attribute value.   

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for existence of the expected attribute value before exhausting timeout. 

No

String

keyAttributeValueContainskeyAttributeValue

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForAttributeContains  WaitForAttributeNotToBeEmpty       "id"           "we323es"        "5"          "500"     "Key"       "Defect"

WaitForAttributeNotToBe

WaitForAttributeToBe

This action waits until till the specified attribute's value of the object specified attribute changes to other than the exact parameterized expected value. This comparison is case-sensitive. You may specify the timeout and polling interval, if required.     
Input Parameters:

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 valueexact expected value.

Yes

String

timeOut

Enter the timeout (in seconds) to wait for the expected 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

keyAttributeValueNotToBekeyAttributeValue

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForAttributeNotToBe  WaitForAttributeToBe            "id"           "232waf"        "5"          "500"     "Key"       "Defect"

WaitForAttributeNotToBeEmpty

WaitForAttributeToBeEmpty

This action waits until the specified attribute's value of the object gets filled with some value. You gets empty. You may specify the timeout and polling interval, if required.  
Input Parameters:

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForAttributeNotToBeEmpty  WaitForAttributeToBeEmpty      "id"           "5"          "500"     "Key"       "Defect"

WaitForAttributeToBe

WaitForChildElement

This action waits till for the value child elements of the specified attribute changes to the exact expected value. This comparison is case-sensitiveobject to appear. You may specify the timeout and polling interval, if required.   
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

attributeNamechildLocatorType

Enter the attribute name whose value the locator type of the object whose child you want to check.

Yes

String

attributeValue childLocatorValue

Enter the exact expected value.locator value of the child you want to check. 

Yes

String

timeOut

Enter the timeout (in seconds) to wait for the expected valueelements to appear

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for existence of the expected value objects before exhausting timeout. 

No

String

keyAttributeValuekeyExistence

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForAttributeToBe      WaitForChildElement      "id"           "232waf2"         "5"          "500"     "Key"       "Defect"

WaitForAttributeToBeEmpty

WaitForClickability

This action waits until for the specified attribute's value of the object gets emptyobject to be clickable. You may specify the timeout and polling interval, if required.    
Input Parameters:

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 object to be emptyclickable.     

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the attribute value object clickability before exhausting timeout. 

No

String

keyAttributeValuekeyClickability

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForAttributeToBeEmpty      "id"        WaitForClickability     "5"          "500"     "Key"       "Defect"

WaitForChildElement

WaitForExistence

This action waits for the child elements existence of the specified object to appear. You may specify the timeout and polling interval, if required. 
Input Parameters:

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

Mandatory

Data Type

timeOut

Enter the timeout (in seconds) to wait for the elements to appearthe existence of the object 

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the existence of the objects 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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForChildElement      "id"       "2"      WaitForExistence     "5"          "500"     "Key"       "Defect"

WaitForClickability

WaitForInnerTextContains

This action waits for the specified object to be clickablecontain the expected partial text. The comparison is case-sensitive. You may specify the timeout and polling interval, if required. 
Input Parameters:

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 object to be clickableexpected text.   

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the object clickability expected text before exhausting timeout. 

No

String

keyClickabilitykeyInnerTextContains

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForClickability  WaitForInnerTextContains          "Connect"       "5"          "500"     "Key"       "Defect"

WaitForExistence

WaitForInnerTextMatchesPattern

This action waits for the existence of inner text from the specified object . You 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:

Parameter Name

Parameter Description

Mandatory

Data Type

innerTextRegXPattern

Enter the expected pattern for the inner text. Pattern should be regular expression. Step fails in case the pattern is invalid.

Yes

String

timeOut

Enter the timeout (in seconds) to wait for the existence of the objectexpected text.   

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the existence of the object expected text before exhausting timeout. 

No

String

keyExistencekeyInnerText

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForExistence  WaitForInnerTextMatchesPattern           ".[My]text."       "5"          "500"     "Key"       "Defect"

WaitForInnerTextContains

WaitForInnerTextNotContains

This action waits for action waits until the specified attribute's value of the object changes to contain the expected partial text. The other than the parameterized value. The comparison is case-sensitive. You may specify the timeout and polling interval, if required. 
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

innerText

Enter the expected text you want to wait for.text which should not be there in the attribute value. 

Yes

String

timeOut

Enter the timeout (in seconds) to wait for the expected 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

keyInnerTextContainskeyInnerTextNotContains

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForInnerTextContains  WaitForInnerTextNotContains          "Connect"       "5"       "500"     "Key"       "Defect"

WaitForInnerTextMatchesPattern

WaitForInnerTextNotToBe

This action waits for till the inner text of the object changes 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:

Parameter Name

Parameter Description

Mandatory

Data Type

innerTextRegXPatterninnerText

Enter the expected pattern for the inner text . Pattern which should not be regular expression. Step fails there in case the pattern is invalidobject.

Yes

String

timeOut

Enter the timeout (in seconds) to wait for the expected 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

keyInnerTextkeyInnerTextNotToBe

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForInnerTextMatchesPattern   WaitForInnerTextNotToBe          ".[My]text.Connect"       "5"       "500"     "Key"       "Defect"

WaitForInnerTextNotContains

WaitForInnerTextToBe

This action waits until the specified attribute's value of for the object changes to other than the parameterized value. The contain the expected exact text. The comparison is case-sensitive. You may specify the timeout and polling interval, if required. 
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

innerText

Enter the text which should not be there in the attribute value. expected text you want to wait for.

Yes

String

timeOut

Enter the timeout (in seconds) to wait for the inner expected 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

keyInnerTextNotContainskeyInnerText

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForInnerTextNotContains  WaitForInnerTextToBe          "Connect"       "5"       "500"     "Key"       "Defect"

WaitForInnerTextNotToBe

WaitForInvisibility

This action waits till the inner text of for the object changes from the specified text. The comparison is case-sensitive. You to invisible. You may specify the timeout and polling interval, if required. 
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

innerText

Enter the text which should not be there in the object.

Yes

String

Parameter Description

Mandatory

Data Type

timeOut

Enter the timeout (in seconds) to wait for the text object to changego invisible   

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the expected text invisibility before exhausting timeout. 

No

String

keyInnerTextNotToBekeyInvisibility

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForInnerTextNotToBe      WaitForInvisibility     "Connect5"        "5"         "500"     "Key"       "Defect"

WaitForInnerTextToBe

WaitForNonClickability

This action object waits for the object to contain the expected exact text. The comparison is case-sensitive.become non clickable. You may specify the timeout and polling interval, if required. 
Input Parameters:

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 textobject to become non clickable.     

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the expected text clickability before exhausting timeout. 

No

String

keyInnerTextkeyNonClickability

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForInnerTextToBe          "Connect"       WaitForNonClickability      "5"          "500"     "Key"       "Defect"

WaitForInvisibility

WaitForNonExistence

This action waits for the non existence of the specified object to invisible. You may specify the timeout and polling interval, if required. 
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

timeOut

Enter the timeout (in seconds) to wait for the non existence of the object to go invisible.      

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for non existence of the invisibility object before exhausting timeout. 

No

String

keyInvisibilitykeyNonExistence

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForInvisibility  WaitForNonExistence     "5"          "500"     "Key"       "Defect"

WaitForNonClickability

WaitForNumberOfElementsToBe

This object action waits for the number of elements of the specified object to become non clickable. You locator on the page to be same as the expected number. You may specify the timeout and polling interval, if required. 
Input Parameters:

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 object to become non clickable.     number elements to appear. 

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the clickability objects before exhausting timeout. 

No

String

keyNonClickabilitykeyNumberOfElements

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForNonClickability      

String

Example:
WaitForNumberOfElementsToBe       "2"         "5"          "500"     "Key"       "Defect"

WaitForNonExistence

WaitForNumberOfElementsToBeLessThan

This action waits for the non existence 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:

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 non existence of the objectnumber elements to appear  

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for non existence of the object objects before exhausting timeout. 

No

StringInteger

keyNonExistencekeyNumOfElementsLessThan

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForNonExistence  WaitForNumberOfElementsToBeLessThan       "2"         "5"          "500"     "Key"       "Defect"

WaitForNumberOfElementsToBe

WaitForNumberOfElementsToBeMoreThan

This action waits for the number of elements of the specified object locator on the page to be same as more than the expected specified number. You may specify the timeout and polling interval, if required.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

numberexpectedNumOfElements

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

keyNumberOfElementskeyNumOfElementsLessThan

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForNumberOfElementsToBe  WaitForNumberOfElementsToBeMoreThan       "2"         "5"          "500"     "Key"       "Defect"

WaitForNumberOfElementsToBeLessThan

WaitForStaleness

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.
 until the element gets detached from the DOM. 
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data TypeexpectedNumOfElements

Enter the expected number of elements to wait for.

Yes

String

timeOut

Enter the timeout (in seconds) to wait for the number elements value to appearbe detached.   

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for existence of the objects element before exhausting timeout. 

No

IntegerString

keyNumOfElementsLessThankeyStatus

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForNumberOfElementsToBeLessThan       "2"WaitForStaleness          "5"          "500"     "Key"       "Defect"

WaitForNumberOfElementsToBeMoreThan

WaitForVisibility

This action waits for the number of elements of the specified object locator on the page to be more than the specified numbervisible. You may specify the timeout and polling interval, if required. 
Input Parameters:

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 appearobject visibility  

No

String

pollingInterval

Enter the frequency (in milliseconds) after which you want to check for the objects object visibility before exhausting timeout. 

No

String

keyNumOfElementsLessThankeyVisibility

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForNumberOfElementsToBeMoreThan    WaitForVisibility     "25"          "5500"     "Key"        "500"     "Key"       "Defect"

WaitForStaleness

This action waits until the element gets detached from the DOM. "Defect"

WaitForObject (Deprecated)

This action waits for the object to appear or disappear for the maximum number of seconds specified.
If the object is found or not found before the maximum time specified, execution continues to the next steps.
If the wait time is "" then the wait time shall be the "Sync Time" set under the Configuration Settings (Execution) window.
Input Parameters:

Parameter Name

Parameter Description

Mandatory

Data Type

timeOutwaitTime

Enter the timeout (in number of 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. value for this parameter can be Pass, Fail, and Defect.

Noobject to appear or disappear. This has to be 0 or any positive number.

Yes

String

existence

Value for this parameter can be true or false.

  • Set true if you want to check for the appearance of the object.
  • Set false if you want to check for the disappearance of the object.

Yes

String

Example:
WaitForStalenessWaitForObject           "510"            "500"true"The action waits for maximum 10 seconds for the object to appear. If the object appears before 10 seconds elapses, execution continues to the next steps. WaitForObject         "Key15"          "Defect"

WaitForVisibility

This action waits False"The action shall wait for maximum 15 seconds for the object to be visible. You may specify the timeout and polling interval, if required. 
Input Parameters:

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. value for this parameter can be Pass, Fail, and Defect.

No

String

Example:
WaitForVisibility     "5"          "500"     "Key"       "Defect"disappear. If the object disappears before 15 seconds elapses,execution continues to the next steps.

ClickAndWait (Deprecated)

This action clicks the specified object and waits for the seconds specified in Sync Time under the Configuration Settings (Execution) window.
Default value is 20 seconds. If the page loads before reaching the maximum sync time execution continues to the next steps. 
This action does not have any parameter. 
Example: ClickAndWait
Webdriver waits for the document to come in ready state. If it is in ready state it is assumed that the page is loaded completely and Webdriver stops waiting. The condition to wait till the document to load in ready state and assume that the page is loaded could however not work as expected at all times.

ClickandchooseOkOnNextConfirmation (Deprecated)

This action handles the alert or confirmation that comes up post clicking the OK button. This action fails if the button is clicked and no alert or confirmation comes up.

This action does not have any parameter.

Example:

ClickandchooseOkOnNextConfirmation