CAB.03 - Textbox
Introduction
This how-to explains how to create an Unsupported Widget action for the Mendix text box widget widget. In a standard situation, the first step is checking if ATS supports the widget.
The how-to assumes that you must build your own action.
The how-to applies to all widgets like the text box widget, which means that, if ATS needs to enter text in a widget, you can follow this how-to. Keep in mind that it might need some adjustments according to the widget!
This how-to teaches you how to do the following:
- Approach a widget in which ATS must enter text
- Create a custom action for entering text in the widget
Prerequisites
Before starting this how-to, make sure you have completed the following prerequisite:
Defining the User Approach
First you define the user approach and how you interact with the widget. Since you are creating an Unsupported Widget action, how you find the widget is not important. What is important is how you interact with it.
You interact with the widget by clicking the text box and entering the text. The clicking part is something a user does to focus the text box so they can enter text. After that, you press Enter or click somewhere to unfocus the text box.
This is the text box focused:
This is the text box unfocused:
Now you know that you must focus, enter text, and unfocus the widget. You perform these tasks on the input
element that is available inside all input widgets. The input
element with the type text
makes it possible to type inside a widget.
Creating the Action Structure
In the previous step, you wrote down the user approach for the text box widget. Now you are going to create this approach in ATS with actions.
To create the action structure, follow these steps:
-
Start by checking the parent element, which is always the element with
mx-name
when creating an unsupported widget action. If the widget does not havemx-name
, look for the highestdiv
element that is still referencing the widget. The parent element of the text box looks like this in the debugger:The debugger creates the border around the selected element in the app:
-
The parent element is not an
input
element. Find a child element that ATS can use to enter text in the widget. When you look at the parent element, you will see it has aninput
child element that ATS can use:Before you start creating the action, you must know if ATS can find the
input
element within the text box widget. You use the debugger to simulate what ATS does. Since the Find Widget Child Node action uses themx-name
to find the parent, you must also use themx-name
in your code. -
Use jQuery to find out if ATS can find the element. Enter the following code in the console of the debugger:
$( ‘.mx-name-textBox2 input’ )
. You use “dots” here, because in jQuery, the dot stands for a class name selector. When you enter this in the console, it looks like this:It can happen that the debugger does not return an element. Check if jQuery is available and if you constructed the code in the correct manner. When you enter a selector in ATS, don’t use
$( ‘….’ )
orjQuery( ‘…..’ )
. -
Add the Find Widget Child Node action to your action. Enter the
input
child node selector, then enter the test step description and output description: -
Test step 1 provides the
input
element that you need for the other steps. Now, add the Focus and Clear Element Value action. Enter the output of step 1 as the input, and give it a proper description: -
After focusing the
input
element, enter the text. When entering text in aninput
element, use the Send Keys action. Add the action, connect the input element from step 1, and give it a proper description: -
Now that you have entered the text, you can unfocus the
input
element. Add the Unfocus WebElement action, connect theinput
element from step 1, and give it a proper description: -
The last action you add is Mendix Wait. You trigger a possible event in the widget by entering text, so you need to ensure that ATS waits for all the background processes to finish:
Action Parameters
Next, you need to add these action input parameters:
- Widget Name
- Value
- Search Context
To add the action parameters, follow these steps:
-
Configure the Widget Name input parameter like this:
-
Configure the Value input parameter like this:
-
Configure the Search Context input parameter like this:
For this custom action, you do not need an output parameter.
-
Connect the input parameters to the correct actions. Start with the Widget Name and Search Context parameters for the Find Widget Child Node action:
-
The last parameter to connect is the Value parameter. Connect this input parameter to the Send Keys action:
There is no need to add logic to this custom action. It only involves entering text in a widget.
Final Check
Now check for the following:
- Use of the ATS naming convention for parameters
- A clear description of test steps, input parameters, output parameters, and action returns
- Interpunction usage in pieces of code (if used)
- Use of data types on the different parameters to avoid errors
After checking these items, you can run the test case that uses this action.
Congratulations! You have created your own custom action for the Mendix text box widget.