- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2024 10:43 AM
Is it possible to integrate Automated Test Framework (Testcases) from ServiceNow to pass fail/test cases in Zephyr?
So I was looking for a way to have a link between ATF and Zephyr Test Cases, So if i pass or fail anything within ATF it should help reflect in Zephyr?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2024 11:34 AM
Yes. But you will definitely need to customize on both the sides. Usually when you integrate two systems, You will be using Co-Relation ID which defines the ID of the record in the third-party app. For example, You will need to create a field called Co-relation ID (name could be anything like Zephyr ID) in ATF test case table and also a field called ServiceNow ID in Zephyr. Now, when you create a test case in ATF, send the sysId of the ATF test case to Zephyr and store it in the field that was created. And from the data Zephyr sent as response, You can parse the ID of test case and save it in the related ATF test case. Now, you have a connection established. When you detect a failure in the ATF run, You can just have an integration to update the status in Zephyr ticket.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2024 12:09 PM
Anytime. Please keep me posted on this or if you need more information on the integration. I would be happy to see this working.