How can we connect test cases to the TestRail application, and how do we retrieve the results in TestRail?
Welcome to the community
using planview tasktop you can connect please check this
https://docs.uipath.com/test-suite/docs/about-alm-tool-connectors
cheers
To connect test cases to the TestRail application and retrieve the results, you can follow these general steps:
- Set Up TestRail Integration: In TestRail, go to Administration > Site Settings > Integration to obtain the necessary integration information, such as the API URL and credentials (username and API key). Make sure you have the required permissions to access the API.
- Configure Test Automation Framework: In your test automation framework (e.g., Selenium, Appium, etc.), you’ll need to incorporate code that interacts with the TestRail API. This code will allow you to create test runs, submit test results, and link them to specific test cases.
- Install TestRail API Client Library: Depending on the programming language you’re using, you may need to install the TestRail API client library. This library provides convenient methods and functions to interact with the TestRail API.
- Connect Test Cases to TestRail: In your test automation code, you’ll need to identify the relevant test cases in TestRail and map them to your automated test cases. Typically, you’ll use the test case ID or a custom identifier to establish this mapping.
- Create Test Runs: Before executing the automated tests, you should create a test run in TestRail. A test run represents a collection of test cases that will be executed together. Use the TestRail API to create a test run and associate the relevant test cases.
Thanks!!