Creating the New UFT One Custom Support Class

In this section you create a custom support class for the AllLights control, as part of the Javaboutique toolkit support. To do this, you use one of the wizards provided by the UFT One Java Add-in Extensibility plug-in in Eclipse. The details you specify in each wizard screen reflect the decisions you made when planning the custom support. In the subsequent sections you implement the methods that the wizard creates in this class.

Create a custom support class

Note: The following sections describe only the options in the wizard screens that are relevant to this lesson. For a complete description of all options available in the wizard screens, see Using the UFT One Java Add-in Extensibility Eclipse Plug-In.

  1. Open the New UFT One Custom Support Class wizard.

    1. In the Eclipse Package Explorer tab, select the new UFT One Java Add-in Extensibility project, JavaboutiqueSupport. Select File > New > Other. The New dialog box opens.

    2. Expand the UFT One folder and select UFT One Custom Support Class.

    3. Click Next. The Custom Class Selection screen opens.

  2. Select the custom class to support, and set the options for the support class.

    1. Select the AllLights class in the org.boutique.toolkit package.

      The AllLights custom class extends java.applet.Applet, which is supported on UFT One. The AllLights support class therefore extends the Base support class: com.mercury.ftjadin.qtsupport.awt.cs.AppletCS. As a result, the Controls of this class represent top-level objects check box is selected by default.

    2. Leave this check box selected, because you want UFT One to recognize the AllLights controls as the highest Java test objects in the test object hierarchy.

    3. Keep the default custom support class name: AllLightsCS.

    4. Click Next. The Test Object Selection screen opens.

  3. Select a test object class to represent the custom control.

    In this screen, you map the custom control to a test object class. In UFT One GUI tests, the custom class controls are represented by test objects of this test object class.

    In Planning Support for the AllLights Control, you decided to map the AllLights custom control to a new test object class, AllLights, that extends JavaApplet.

    1. Select the New test object class option and enter AllLights as the name for the test object class.

    2. In the Extends existing test object list, select JavaApplet. This list contains all of the Java objects that UFT One currently supports. If you define new test objects for custom support, they are included in the list as well.

    3. Click Next. The Custom Support Test Object Identification Properties screen opens.

  4. Determine the set of test object identification properties to implement in AllLightsCS.

    This screen displays the identification properties supported by the base support class you are extending, as well as additional properties that are defined in the test object class you selected, but are not yet supported. It enables you to select properties whose support you want to implement or override with new functionality and to add new properties.

    1. The left pane shows all of the identification properties whose support is implemented by AppletCS, and therefore inherited by the new AllLightsCS support class. For most of the properties in this list, the default implementation is sufficient.

      Select the label check box. After you finish generating the support files using the wizard, you override the existing support for this property with a custom implementation that matches the needs of your custom control.

    2. The identification properties displayed in the right pane are JavaApplet properties that are not supported by AppletCS. These properties are not required for the AllLights support. Select them, click Remove, and then click Yes to confirm.

      These identification properties are part of the AllLights test object class definition that is created based on the JavaApplet test object class. Removing the properties from this list means that they are not supported for AllLights controls. They still appear in the list of identification properties shown in the UFT One Object Spy, but they will have no value.

    3. In Planning Support for the AllLights Control, you decided to support new identification properties on AllLights test objects. In the next step you add these properties to the list of additional properties required for the test object class. After you finish generating the support files using the wizard, you implement support for these properties.

      The identification properties are added to the test object class definition. This means that the new properties appear in the list of identification properties in UFT One for all test objects of this class. This is the reason you are creating the new AllLights test object class.

  5. Add the new test object identification properties you want to implement in AllLightsCS.

    1. Click Add in the Additional properties required for test object class pane. The Identification Property dialog box opens.

    2. In the Name box, enter OnCount. Click OK to add the new Identification Property to the list.

    3. Repeat this procedure to add the properties OnList and GameOver.

    4. Click Next. The Custom Support Test Object Methods screen opens.

  6. Determine the set of test object methods to implement in AllLightsCS.

    This screen displays the test object methods defined in the test object class you selected. It enables you to select methods whose support you want to implement or override with new functionality, and to add new methods.

    The left pane shows all of the test object methods (defined in the test object class you selected) whose support is implemented by AppletCS, and therefore inherited by AllLightsCS. There is no need to select any methods to override.

    The right pane displays the test object methods that are defined for the AllLights test object class, but are not supported by AppletCS. There are no such methods currently defined.

    In Planning Support for the AllLights Control, you decided to support new test object methods on AllLights test objects. You now need to add these methods to the list of additional test object methods required for the test object class. After you finish generating the support files using the wizard, you implement support for the methods you add.

    The test object methods are added to the existing test object class. This means that the new methods appear in UFT One for all test objects of this class, regardless of whether or not they are supported for these objects. In a UFT One GUI test, if you call a test object method for an object, and that method is not supported, a run-time error occurs. This is the reason you are creating the new AllLights test object class.

    1. Click Add in the Additional test object methods required for test object class pane. The Test Object Method dialog box opens.

      • In the Method Name box, enter: Restart. The Restart test object method does not require any arguments other than the mandatory obj (Object) that represents the custom control.

      • Leave the Method returns a string value check box cleared. This method returns only a return code.

      • In the Description box, enter: Clicks the RESTART button.

      • In the Documentation box, enter: Click the RESTART button.

      • Click OK to close the Test Object Method dialog box and add the Restart method to the list.

    2. Add another test object method by clicking Add once again. In the Test Object Method dialog box that opens, perform the following:

      • In the Method Name box, enter: ClickLight.

      • Add the Row and Column arguments to the ClickLight method:

      • In the Arguments area, click Add. The Test Object Method Argument dialog box opens.

        In the Name box, enter: Row.

        In the Type box, select Variant. (If you select String, then when you add steps in UFT OneGUI tests with the ClickLight method, you have to enclose the row number argument in quotes.)

        Leave the Mandatory argument check box selected.

        Click OK to close the Test Object Method Argument dialog box and add the Row argument to the list of arguments for the ClickLight test object method.

      • Repeat this procedure to add the Column argument to the list.

      • Leave the Method returns a string value check box cleared.

      • In the Description box, enter: Clicks the specified light.

      • In the Documentation box, enter: Click the light in row <Row> column <Column>. Enter the <Row> and <Column> arguments in the sentence by clicking  and selecting the relevant argument. The final text in the Documentation box will be: Click the light in row %a1 column %a2.

      • Click OK to close the Test Object Method dialog box and add the ClickLight method to the list.

    3. Click Next. The Custom Control Recording Support wizard screen opens.

  7. Determine the set of events for which to listen, to support recording on the AllLights control.

    This screen displays the event listeners supported by the support class you selected to extend. It enables you to select listeners whose implementation you want to override with new functionality and to add new event listeners to implement:

    In the left pane, you can see the listeners implemented by AppletCS. You do not have to override any of these for the AllLightsCS custom support class.

    In the right pane, you specify the listeners you want to add for AllLightsCS. Each listener you select implies a set of event handler methods you add to the custom support class.

    1. Click Add to add the MouseListener.

      The Listener dialog box opens:

      Select java.awt.event.MouseListener from the Listener list and click OK. The Listener dialog box closes and the MouseListener, and all of the event handler methods it includes, are added to the list in the right pane of the wizard screen.

    2. On the Custom Control Recording Support screen:

      • Clear the Treat controls of this class as wrapper controls check box. It is selected, by default, because the AllLights class extends java.awt.container.

      • Select the Override low-level mouse event recording check box to prevent low-level events (coordinate-based operations) from being recorded instead of the events you want to record.

    3. Click Next. The New Test Object Class Details screen opens.

  8. Define the details for the new test object class AllLights.

    In this screen you define the details of the new test object class you are creating to map to the custom control.

    Perform the following:

    1. For the Test object icon, click Browse, locate the <UFT One Java Add-in Extensibility SDK Installation folder>\samples\Javaboutique folder, and select the AllLights_icon.ico file.

    2. In the Identification property for unique description box, leave the selected label property.

      Note: If you wanted to include additional identification properties in the test object description, you would have to manually specify this in the test object configuration file. For more information, see New Test Object Class Details Screen.

    3. In the Default test object method list, select ClickLight.

    4. In the Default checkpoint properties box, leave the selected properties and select also the GameOver, OnCount, and OnList check boxes.

    5. Click Finish. The Custom Control Support Class Summary screen opens.

  9. View the custom control support class summary.

    Review the planned content of the custom support class, and click OK.

    The following changes are made in the JavaboutiqueSupport project:

    • A new UFT One custom support class, AllLightsCS, is created in the com.mercury.ftjadin.qtsupport.Javaboutique.cs package. The file is opened and displayed in a tab in the right pane.

    • A new JavaboutiqueTestObjects.xml file is created in the Configuration\TestObjects folder.

    • The Javaboutique.xml file is modified. An element is added to the file, mapping the AllLights custom class to the AllLightCS support class. For information on the structure of this file, see the Toolkit Configuration Schema Help.

    For a detailed explanation of the AllLightsCS class and the JavaboutiqueTestObjects.xml file, see Understanding the New Custom Support Files.

    The asterisk (*) next to the AllLightsCS file name (in the AllLightsCS tab) indicates that it has not been saved. The changes made by the wizard are codependent, and must be saved to prevent discrepancies. Select File > Save, or click the Save button.

Back to top

Understanding the New Custom Support Files

When you completed the process of the New UFT One Custom Support Class, the wizard registered the new class in the toolkit configuration file, and created the following files:

  • AllLightsCS.java. This file contains the new AllLightsCS support class.

  • JavaboutiqueTestObject.xml. This file contains the new test object classes defined for the Javaboutique toolkit support. At this point, there is only one such test object class: AllLights.

The following sections explain the content that the wizards created in these files:

Back to top

Next steps: