Create a Test Case

Last modified: April 18, 2024

1 Introduction

This how-to explains how to create a test case, add test steps manually, and add test steps using the ATS Recorder. A test case consists of test steps that contain actions. Each action (like clicking a button) performs a task.

This how-to uses the Mendix Company Expenses app as an example, and you will create a test case that submits a new expense in this app. You create the same test case twice, once manually, and once with the ATS Recorder.

This how-to teaches you how to do the following:

  • Create a new test case
  • Add test steps to your test case manually
  • Add test steps using the ATS Recorder

2 Prerequisites

Before starting with this how-to, make sure you have the following prerequisites in place:

3 Creating a Test Case

To create a test case, follow these steps:

  1. Open your project in ATS and go to the Repository.

  2. Click Add Test inside the Tests tab:

    You can also click Add Item inside the All Objects tab:

    Clicking either button opens the Create new dialog box:

  3. Select Test Case in the drop-down menu.

  4. Enter a name in the Name field (for example, TC - 001.01 - Create new Expense (Manually)). Using a predefined naming structure is advised.

  5. Enter a description in the Description field (for example, This test case creates a new expense in the company expenses app). Giving each test case a description of what it does is advised.

  6. Click Create:

    This will open the Test Case page. ATS displays the Name and Description in the upper-left corner of this page.

4 Adding Test Steps Manually

The following steps describe how to add test steps manually to your test case. You will add the steps necessary for creating a new expense in the Company Expenses app.

  1. Click Add on the Test Case page:

    This will open the Test Step Setup dialog box.

  2. The first step is opening the Company Expenses app, which you do this by entering a URL in the browser. ATS does the same by using the open application action.

  3. Enter a description of the test step in the Describe Test Step text box (for example, Open the company expenses app).

  4. Search for the Open Application action in the Search Action text box. Enter terms like Find, Click, Set, Assert, and Get to find the right action.

  5. Select the Open Application action from the Select an Action data grid. Choose the one for Mendix applications.

  6. Click Save:

    Now ATS adds the action to your test step.

  7. Double-click the Application URL input parameter:

    This will open the Edit Input Value dialog box.

  8. Select Global Constant.

  9. Select Application URL.

  10. Click Save:

    ATS now uses the application URL you selected in the Run Configuration application.

  11. After opening the application, you must log in. ATS has a standard login action for logging in to a Mendix application that you must use, which is the login action. The login page of the company expenses app looks like this:

  12. Inside your test case, click Add again and add the Login action:

  13. Double-click the Username input parameter and add the username.

  14. Double-click the Password input parameter and add the password:

  15. After you log in to the Company Expenses app, you will see the home page. To create a new expense, you must click the New Expense button in the app. This means that ATS must click the button. To get the information you need, open the ATS Helper and hover over the New Expense button while holding Ctrl.

  16. ATS has an action that clicks a widget, which is the Click Widget action. Inside your test case, click Add again and add the Click Widget action.

  17. Double-click the Widget Name input parameter and add the widget name displayed in the ATS Helper:

  18. After clicking New Expense in the Company Expenses app, a dialog box opens called New Expense:

  19. A user visually confirms that the dialog box appears. ATS has an action that finds and asserts a dialog box, which is the Find/Assert Dialog action. Inside your test case, click Add again and add the Find/Assert Dialog action.

  20. Double-click the Dialog Title input parameter and add the title of the dialog box:

  21. To complete an expense, you must enter an Amount, Type, and Description, and then Save & Submit the expense:

  22. The Amount field is a text box widget, the Type field is a reference selector widget, and the Description field is a text area widget. ATS can interact with all these widgets using the Set Value action. Inside your test case, click Add and add the Set Value action. Then, select the test step with the Set Value action, click Copy, and click Paste two times. Now you have a test step for each field.

  23. Use the ATS Helper on the Amount field in the Company Expenses app. Select test step 5 in your test case, fill in a test step description, enter the Widget Name, and enter the Value.

  24. Use the ATS Helper on the Type field in the Company Expenses app. Select test step 6 in your test case, fill in a test step description, enter the Widget Name, and enter the Value.

  25. Use the ATS Helper on the Description field in the Company Expenses app. Select test step 7 in your test case, fill in a test step description, enter the Widget Name, and enter the Value.

  26. To submit the new expense, you must click the Save & Submit button:

  27. Inside your test case, click Add, add the Click Widget action, fill in a test step description, and enter the Widget Name:

  28. You must confirm that the expense is successfully submitted. In the Company Expenses app, a submitted expense appears in the Find/Assert DataGrid Row action. Inside your test case, click Add and add the Find/Assert Datagrid Row action.

  29. Now use the ATS Helper to find the Widget Name of the data grid in the Company Expenses app:

  30. Also use the ATS Helper to find the Column Name of the Description column:

  31. Now double-click the parameters and add the correct information:

    • The Widget Name parameter and add the widget name
    • The Column 1 Name parameter and enter the column name
    • The Column 1 Value parameter and enter the description
  32. The last step of your test case is to end your user session by logging out. ATS has two ways for logging out of your application:

    • ATS clicks the Logout button
    • ATS uses the Logout action The Logout action is a hard logout, meaning that no matter where ATS is inside your application, it always logs out. Inside your test case, click Add and add the Logout action.

    You have added all the test steps for your test case:

  33. The last thing to do is to clarify to ATS what you are testing. This is done by setting the Call Type of your test steps to one of the following:

    • Setup for all the steps that you must perform to get to the test situation
    • Regular for all the steps that are part of your test situation
    • Teardown for all steps that are necessary to clean up

    Test step 1 and test step 2 must have the Call Type: Setup. Test step 3-9 must have the Call Type: Regular. Test step 10 must have the Call Type: Teardown.

    You have now manually created your test case.

5 Adding Test Steps Using the ATS Recorder

The following steps describe how to add test steps to your test case using the ATS Recorder. You add the steps necessary for creating a new expense in the Company Expenses app. Create a new test case by completing 3 Creating a Test Case before starting with this section.

To add test steps using the ATS Recorder, follow these steps:

  1. Click Record on the Test Case page:

    This opens the Recording Session page:

  2. Now open a new page in your browser and enter the URL of your Mendix app. When you go back to ATS you see that ATS recorded the URL and the Open Application action:

  3. Next go back to the Company Expenses app and enter your login credentials.

  4. Click the New Expense button.

  5. Enter an expense amount in the Amount field.

  6. Enter an expense type in the Type field.

  7. Enter an expense description in the Description field.

  8. Click the Save & Submit button.

  9. Inside the data grid, click the description in the Description column of your expense to simulate an assert:

  10. Click the Sign Out button. On the Recording Session page, you see that all the steps are recorded by ATS:

  11. Click Save to save the test steps into your test case:

  12. You must set the input parameter Application URL of the Open Application action to the Global Constant, Application URL:

  13. You must manually add the New Expense dialog box (you cannot record this). You must add the action between test step 3 and test step 4. A user will visually confirm that the dialog box appears. ATS has an action that finds and asserts a dialog box, which is the Find/Assert Dialog action. Inside your test case, click Add again and add the Find/Assert Dialog action.

    Note that you can also add actions manually between recording sessions.

  14. Double-click the Dialog Title input parameter and add the title of the dialog box:

  15. For the logout, you can choose to keep the recorded click the Sign Out button or replace it with the Logout action.

  16. The last thing to do is to clarify to ATS what you are testing. This is done by setting the Call Type of your test steps to one of the following:

    • Setup for all the steps that you must perform to get to the test situation
    • Regular for all the steps that are part of your test situation
    • Teardown for all steps that are necessary to clean up

    Test step 1 and test step 2 must have the Call Type: Setup. Test step 3-9 must have the Call Type: Regular. Test step 10 must have the Call Type: Teardown.

You have now created your test case using the ATS Recorder.

6 Next Up

You have now learned how to create a test case, so the next how-to is How to Create a Test Suite.

For an overview of all the how-tos and the structure, see ATS 1 How-tos. We advise following the how-to’s in the order listed there.