Document toolboxDocument toolbox

A new version of Qualitia Automation Studio 7.2.x is now available. We highly recommend you upgrade. Find more details here.

Rules for Custom Actions

In order to create the custom actions for Selenium Webdriver, you need to create the action in a Java project using Eclipse and then map the action information using Qualitia.

The following are some rules for creating custom actions that need to be followed:

  • The parameter data types supported by Qualitia are String and Array. If an array parameter is used in Qualitia for the custom action, then the custom action parameter should be of the type Object in Custom Action function. The parameter can then be type-casted into the Data type which is required in the action.
    For example, the Object parameter can be type-casted into the Array list.
  • All Custom actions should return an integer value only.
      1. Return 0 for Passed status
      2. Return 1 for Failed status
      3. Return 2 for Defect status

  • No two custom actions can have the same function name in the same class. Function overloading is not allowed. Duplicate function names in different classes are allowed.
  • No two custom actions can be in the same package hierarchy if the actions are written in different Eclipse projects.
  • Any new custom object created in Qualitia cannot be imported. You must create the object manually and map it to the relevant custom class in Qualitia.
  • Once the action is mapped into Qualitia and used in a test case, do not change the existing signature or other details of the actions or the classes created. The functionality of the action can be modified. Do not delete the custom actions or custom classes that are used in the Test Case.

Not finding what you need?