id | title | hide_title | sidebar_label | description | keywords | url | site_name | slug | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
kane-ai-using-json-variables |
KaneAI - Utilizing JSON Variables for Assertions |
false |
JSON Variables |
Learn how to use JSON variables in the KaneAI test cases for assertions |
|
LambdaTest |
kane-ai-using-json-variables/ |
This document outlines the process of using JSON variables in KaneAI to assert specific objects within an API response. The guide provides a step-by-step procedure for executing API calls, examining responses, and performing assertions on both status and body of the response.
- Access to KaneAI platform
- Basic understanding of API testing
- Familiarity with JSON structures
In KaneAI, you can use JSON variables to perform detailed assertions on API responses. This allows you to validate specific objects and elements within the response structure.
- Navigate to your desired API endpoint (e.g., a pet store website)
- Configure the necessary API call parameters
- Execute the API request
- Select the appropriate HTTP method (GET, POST, etc.)
- Add required headers
- Input any necessary request body
- Send the request
<img loading="lazy" src={require('../assets/images/kane-ai/knowledge-base/variables/json-variable/image2.jpg').default} alt="Image" className="doc_img img_center"/>
After executing the API call, KaneAI automatically generates variables containing:
- Response status code
- Response body
- Response headers
- Other relevant metadata
<img loading="lazy" src={require('../assets/images/kane-ai/knowledge-base/variables/json-variable/image3.jpg').default} alt="Image" className="doc_img img_center"/>
To assert the response status:
- Use double curly braces
{{
to access the variable list - Navigate using arrow keys to select the status variable
- Define your expected status code
<img loading="lazy" src={require('../assets/images/kane-ai/knowledge-base/variables/json-variable/image4.jpg').default} alt="Image" className="doc_img img_center"/>
- Expected status: 200
- If actual status is 500, the assertion will fail
<img loading="lazy" src={require('../assets/images/kane-ai/knowledge-base/variables/json-variable/image5.jpg').default} alt="Image" className="doc_img img_center"/>
Navigate through the response body using the same double curly brace method:
- Open the variable selection menu with
{{
- Browse to the specific JSON element you want to validate
- Create an assertion for that element
<img loading="lazy" src={require('../assets/images/kane-ai/knowledge-base/variables/json-variable/image6.jpg').default} alt="Image" className="doc_img img_center"/>
- Check if 'dogs' element exists in the response
- Verify specific property values
- Validate nested JSON structures
<img loading="lazy" src={require('../assets/images/kane-ai/knowledge-base/variables/json-variable/image7.jpg').default} alt="Image" className="doc_img img_center"/>