You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Is there a way how to import TestExecution and associate them to a TestPlan in one step?
What i have found ist to do it in two steps:
It works but it is hard to automate.
Thanks and regards,
Christian
Hi @Christian Dinkel ,
the API for Cucumber is still not the same as for other formats, so you have to use the multipart endpoint.
You can do it in a single shot though.
Here's an example using an API call made in Python.
In sum, you need to use the multipart endpoint and build a JSON for customizing the Test Execution issue. You'll need to know the Test Plan custom field id for making that JSON. The same applies for the Test Environment field for example.
Example of test execution json (i.e. the "info" part of the multipart request).
{
"fields": {
"project": {
"key": "CALC"
},
"summary": "Test Execution for Cucumber execution",
"description": "This contains test automation results",
"fixVersions": [ {"name": "v1.0"}],
"customfield_11805": ["chrome"],
"customfield_11807": ["CALC-8895"]
}
}
Regards
Sergio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.