In functional tests, you can apply assertions to various types of test steps. Depending on the test step type, there are different assertions available.
Double-click the test step in the Navigator to open its editor.
Run the request you are planning to assert at least once to get the response from the endpoint. To do that, click
.
Note
If you want to add the assertion for the SOAP VirtResponse test step, run the request you have associated with this virtual response.
Now, you can use the response data during the assertion creation.
The easiest way of validating responses is with the Smart Assertion . It checks both the message content and the metadata such as headers, status codes, and parameters in accordance with the predefined set of rules. You can create a Smart Assertion from the Assertion panel. For REST, GraphQL, and SOAP requests, you can create it from the response editor as well:
You can quickly add assertions for specific elements in the response. To do that:
Right-click the element you want to check in the Outline panel of the response editor.
Select the desired assertion from the Add Assertion menu item.
There are the following options:
for Content – checks whether the selected element contains the specified value.
for Count – checks whether the selected element appears the specified number of times.
for Existence – checks whether the selected element exists in the response.
for Content matching RegEx – checks whether the selected element matches the specified regular expression.
for Existence with Script – checks whether the selected element exists in the response by using a Groovy script.
To open the Assertions panel, click Assertions at the bottom of the test step editor.
![]() |
To learn how to work with the Assertions panel, see Verify Results.
To learn about different assertion types, see Assertions Reference.
For functional tests, you can group assertions into assertion groups. Such groups behave like regular assertions and pass or fail based on the status of assertions included in them. To learn more about working with assertion groups, see Group Assertions.
![]() |
Describes where you can find assertion coverage data and how to use it.