ClickLinkByText
This action clicks the link specified by the user on the page.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
link | The text of the link which is to be clicked | Yes | String |
Example:
ClickLinkByText "Advanced Search"
Click
This action clicks the specified object
Example:
Click
StorePropertyValue
This action stores the property value of the specified object against a key name. The stored value can be retrieved by using the key name.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
key | Variable in which the property value will be stored | Yes | String |
Property | Property/attribute name of the object whose value needs to be stored. | Yes | String |
Example:
StorePropertyValue "value" "name"
ClickAt
This action clicks at a particular point on the object.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
X | The x-coordinate to click. | Yes | String |
Y | The Y-coordinate to click. | Yes | String |
Example:
ClickAt "5" "10"
DoubleClickLinkByText
This action double-clicks on the link specified by the user on the page.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
link | The text of the link which is to be double clicked | Yes | String |
Example
DoubleClickLinkByText "Advanced Search"
VerifyVisibility
This action verifies the visibility of the specified object.
Input Parameters:
Parameter Name | Parameter Description | Mandatory | Data Type |
---|---|---|---|
visibility | Data type of this parameter is can be true or false. If True – checks if the page is visible | Yes | String |
Example
VerifyVisibility "True"
ClickAndWait
This action clicks the page object and waits.It waits for the maximum sync time set in the Qualitia Configuration (Execution) window for key Sync Time. If the page page loads before the maximum sync time, then the action will stop waiting.
Example:
ClickAndWait
Note |
---|
In Webdriver we wait 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 will stop waiting. The condition to wait till the document is in ready state and assume that the page is loaded could however not work as expected at all times. |
StoreExistence
This action stores the existence of an 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 | The variable in which the existence (true/false) of the object is stored. | Yes | String |
Example:
StoreExistence "Key"
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|