Skip to content

Manual Testing: Recording

Purpose

As described in the main Manual Testing topic, sometimes it is not possible to automate the testing of a specific application, however Rapise is also a powerful manual test generation system that can help you create test cases 5x faster than simply creating test cases by hand step by step.

This section describes how you can record a set of steps automatically by simply using the application being tested. Unlike an automated test however, Rapise will store a human-readable description of what was performed along with a screenshot, rather than actual computer code that can be played back by a computer.

Step 1 - Creating a New Test

To start manual testing, simply create your test as normal using the New Test dialog box. Then once the test has been created, click on the Tools > Manual Steps menu and then you will be taken to the Manual Editor with the Manual Test Toolbar visible:

Manual Toolbar

The test step list will initially be empty.

Step 2 - Recording Some Steps

Now you should open up the application you want to record from. In this example we shall be testing the built-in Microsoft Paint application. This is a good candidate for manual testing as a lot of the functionality is hard to test automatically since there is a simple drawing canvas rather than discrete buttons and data elements to test.

To make sure that we have screenshots recorded, whilst keeping the size of the screenshots reasonable, use the following recording options:

manual_recording_2

Now click the Record Manual button and choose MS-Paint from the list of running applications in Select Application to Record dialog and then click 'Select' to start recording.

As you click through the application, the recording will display the list of steps and actions being captured:

manual_recording_3

In this example, we created a new canvas, chose the Pencil tool, created a drawing using the pencil, entered some text and then made it bold:

manual_recording_3b

When you click Finish to complete the recording, Rapise will now display the list of populated manual test steps with the embedded screen captures:

manual_recording_4

Notice that each recorded test step already has a Description and an Expected Result with a screenshot of what the user was doing. In addition, the Sample Data contains the equivalent of Rapise automation code for reference. This can be useful later if you will decide to automate this test.

Step 3 - Editing the Steps

Typically you may want to add some additional steps (e.g. we added a line to describe the process of starting up MS Paint), delete any duplicate/unnecessary steps and reword them so that they make the most sense to the tester. In our example we used the manual editing screen to update the steps as follows:

manual_recording_5

Click Save to make sure the updates are all saved locally. Now before you can execute these tests, you will need to Save them to Spira (our web-based test management system).

Step 4 - Saving to Spira

Click on the option to Save to Spira, you will be asked to confirm the creation of the document folder in Spira that will hold the test files:

manual_recording_6

Click on Create and then click OK in the Synchronize Files dialog. The manual test will be saved to Spira. You will see that this process adds the unique Spira test step IDs to each step. They are displayed using the format [TS:xxx]. This special token [TS:xxx] can be used in Tester.Assert commands to relate specific verification points with test steps during automated testing.

manual_recording_7

Now that the test has been saved in Spira, you can click on the View Manual Test in Spira toolbar button to see how the test steps look inside Spira.

view manual in spira

manual_recording_8

Now this test case is ready for manual playback.

See Also