#
Exports
The export feature allows you to download test suite data in a format of your choice. This includes all the data that you see on the webapp for a test suite- test description, request payload, assertions, etc. Using exports, you can use the tests created on KushoAI and run them locally or from your CI/CD platform using tools/frameworks of your choice.
We currently support these formats and add more formats as and when users request them. So if you have a specific format in mind for exports, feel free to reach out to us at support@kusho.ai or ping us on our Slack channel:
- Postman collection JSON: This will allow exports in the Postman Collection v2.1 format. You can import this in Postman and use their "Run Collection" feature to execute the test suite. This export will create a collection for every API test suite.
- Rest Assured: A Java-based library for testing RESTful APIs. You can export test suites into Rest Assured format and easily integrate them into your automated testing workflows.
- JSON: This will export the test suites in a plain JSON file. You can use this data and write scripts to execute the tests.
- CSV: This will export the test suites in a CSV format. You can import this into Google Sheets or Microsoft Excel for analysis.
There are three ways to export test suites:
- You can export a test suite from the "Test Suite Details Page" using the "Export" button.
- You can export a test suite using the "Export" button on the Test Suites page.
- You can export multiple test suites using the checkboxes on Test Suites page and the "Export" button on the toolbar that opens up at the bottom on checkbox selection.
If there are multiple test suites to be exported, the export will be a ZIP file. Please remember to extract the files before you do any import operations.